openapi-nexus 0.1.4

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 ComplexNestedObjectUserProfileContactAddressesItem {
    private String city;
    private String street;
    private String zip;

    public ComplexNestedObjectUserProfileContactAddressesItem(String city, String street, String zip) {
        this.city = city;
        this.street = street;
        this.zip = zip;
    }

    public String getCity() {
        return this.city;
    }

    public String getStreet() {
        return this.street;
    }

    public String getZip() {
        return this.zip;
    }
}