// 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;
/**
* Object with default values
*/
public class ObjectWithDefaults {
private Boolean active;
private Integer age;
private String name;
public ObjectWithDefaults(Boolean active, Integer age, String name) {
this.active = active;
this.age = age;
this.name = name;
}
public Boolean getActive() {
return this.active;
}
public Integer getAge() {
return this.age;
}
public String getName() {
return this.name;
}
}