// 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 ComplexNestedObjectUser {
private Integer id;
private ComplexNestedObjectUserProfile profile;
public ComplexNestedObjectUser(Integer id, ComplexNestedObjectUserProfile profile) {
this.id = id;
this.profile = profile;
}
public Integer getId() {
return this.id;
}
public ComplexNestedObjectUserProfile getProfile() {
return this.profile;
}
}