// Code generated by openapi-nexus. DO NOT EDIT.
//
// Inline Object with Array Test — 1.0.0
// Test case for inline object containing an array of inline objects
package com.example.sdk.models;
import com.google.gson.annotations.SerializedName;
public class InlineObjectWithArrayContainerDataItemsItem {
@SerializedName("item_name")
private String itemName;
@SerializedName("item_value")
private Double itemValue;
public InlineObjectWithArrayContainerDataItemsItem(String itemName, Double itemValue) {
this.itemName = itemName;
this.itemValue = itemValue;
}
public String getItemName() {
return this.itemName;
}
public Double getItemValue() {
return this.itemValue;
}
}