// Code generated by openapi-nexus. DO NOT EDIT.
//
// Naming Conventions Test — 1.0.0
// Test fixture to verify language property naming conventions
package com.example.sdk.models;
import com.google.gson.annotations.SerializedName;
public class NamingConventionTestPascalCaseObject {
@SerializedName("nested_property")
private String nestedProperty;
public NamingConventionTestPascalCaseObject(String nestedProperty) {
this.nestedProperty = nestedProperty;
}
public String getNestedProperty() {
return this.nestedProperty;
}
}