// Code generated by openapi-nexus. DO NOT EDIT.
//
// All Optional Properties Test — 1.0.0
// Test case for object with all optional properties including arrays, references, and inline objects
package com.example.sdk.models;
import com.google.gson.annotations.SerializedName;
public class AllOptionalPropertiesOptionalArrayItem {
@SerializedName("optional_item_field")
private String optionalItemField;
public AllOptionalPropertiesOptionalArrayItem(String optionalItemField) {
this.optionalItemField = optionalItemField;
}
public String getOptionalItemField() {
return this.optionalItemField;
}
}