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;

/**
 * Basic object with properties
 */
public class BasicObject {
    private Boolean active;
    private long id;
    private String name;

    public BasicObject(Boolean active, long id, String name) {
        this.active = active;
        this.id = id;
        this.name = name;
    }

    public Boolean getActive() {
        return this.active;
    }

    public long getId() {
        return this.id;
    }

    public String getName() {
        return this.name;
    }
}