// 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;
public class DeeplyNestedInlineLevelOne {
@SerializedName("level_one_field")
private String levelOneField;
@SerializedName("level_two")
private DeeplyNestedInlineLevelOneLevelTwo levelTwo;
public DeeplyNestedInlineLevelOne(String levelOneField,
DeeplyNestedInlineLevelOneLevelTwo levelTwo) {
this.levelOneField = levelOneField;
this.levelTwo = levelTwo;
}
public String getLevelOneField() {
return this.levelOneField;
}
public DeeplyNestedInlineLevelOneLevelTwo getLevelTwo() {
return this.levelTwo;
}
}