// Code generated by openapi-nexus. DO NOT EDIT.
//
// Empty Array Test — 1.0.0
// Test case for empty array handling
package com.example.sdk.models;
import com.google.gson.annotations.SerializedName;
public class EmptyArrayTestEmptyItemsItem {
@SerializedName("item_id")
private String itemId;
public EmptyArrayTestEmptyItemsItem(String itemId) {
this.itemId = itemId;
}
public String getItemId() {
return this.itemId;
}
}