openapi-nexus 0.1.7

OpenAPI 3.x multi-language code generator
Documentation
// Code generated by openapi-nexus. DO NOT EDIT.
//
// Deeply Nested Inline Objects Test — 1.0.0
// Test case for three levels of nested inline objects

package com.example.sdk.models;

import com.google.gson.annotations.SerializedName;

/**
 * Three levels of nested inline objects
 */
public class DeeplyNestedInline {
    @SerializedName("level_one")
    private DeeplyNestedInlineLevelOne levelOne;

    public DeeplyNestedInline(DeeplyNestedInlineLevelOne levelOne) {
        this.levelOne = levelOne;
    }

    public DeeplyNestedInlineLevelOne getLevelOne() {
        return this.levelOne;
    }
}