openapi-nexus 0.1.2

OpenAPI 3.x multi-language code generator
Documentation
// Code generated by openapi-nexus. DO NOT EDIT.
//
// Comprehensive Schema Types Example — 1.0.0
// Comprehensive test for all OpenAPI v3.1.2 schema types

package com.example.sdk.models;

public class ComplexNestedObjectUserProfile {
    private ComplexNestedObjectUserProfileContact contact;
    private String firstName;
    private String lastName;

    public ComplexNestedObjectUserProfile(ComplexNestedObjectUserProfileContact contact,
    String firstName, String lastName) {
        this.contact = contact;
        this.firstName = firstName;
        this.lastName = lastName;
    }

    public ComplexNestedObjectUserProfileContact getContact() {
        return this.contact;
    }

    public String getFirstName() {
        return this.firstName;
    }

    public String getLastName() {
        return this.lastName;
    }
}