// 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 java.util.List;
import com.google.gson.annotations.SerializedName;
/**
* Object with array that can be empty
*/
public class EmptyArrayTest {
@SerializedName("empty_items")
private List<EmptyArrayTestEmptyItemsItem> emptyItems;
public EmptyArrayTest(List<EmptyArrayTestEmptyItemsItem> emptyItems) {
this.emptyItems = emptyItems;
}
public List<EmptyArrayTestEmptyItemsItem> getEmptyItems() {
return this.emptyItems;
}
}