openapi-nexus 0.1.7

OpenAPI 3.x multi-language code generator
Documentation
// Code generated by openapi-nexus. DO NOT EDIT.
//
// Complex Array Structure Test — 1.0.0
// Test case for array of inline objects where each object has nested inline objects

package com.example.sdk.models;

import com.google.gson.annotations.SerializedName;

public class ComplexArrayStructureItemsItemNestedData {
    @SerializedName("nested_field_one")
    private String nestedFieldOne;
    @SerializedName("nested_field_two")
    private Integer nestedFieldTwo;

    public ComplexArrayStructureItemsItemNestedData(String nestedFieldOne, Integer nestedFieldTwo) {
        this.nestedFieldOne = nestedFieldOne;
        this.nestedFieldTwo = nestedFieldTwo;
    }

    public String getNestedFieldOne() {
        return this.nestedFieldOne;
    }

    public Integer getNestedFieldTwo() {
        return this.nestedFieldTwo;
    }
}