openapi-nexus 0.1.4

OpenAPI 3.x multi-language code generator
Documentation
// Code generated by openapi-nexus. DO NOT EDIT.
//
// Optional Nested Object Reference Test — 1.0.0
// Test case for optional nested object reference

package com.example.sdk.models;

import com.google.gson.annotations.SerializedName;

/**
 * User profile model with snake_case properties
 */
public class UserProfile {
    @SerializedName("bio_text")
    private String bioText;
    @SerializedName("display_name")
    private String displayName;
    @SerializedName("profile_id")
    private String profileId;

    public UserProfile(String bioText, String displayName, String profileId) {
        this.bioText = bioText;
        this.displayName = displayName;
        this.profileId = profileId;
    }

    public String getBioText() {
        return this.bioText;
    }

    public String getDisplayName() {
        return this.displayName;
    }

    public String getProfileId() {
        return this.profileId;
    }
}