// Code generated by openapi-nexus. DO NOT EDIT.
//
// Array with Reference Property Test — 1.0.0
// Test case for array of inline objects that contain a reference property
package com.example.sdk.models;
import com.google.gson.annotations.SerializedName;
public class ArrayWithReferencePropertyItemsItem {
@SerializedName("item_id")
private String itemId;
private User owner;
public ArrayWithReferencePropertyItemsItem(String itemId, User owner) {
this.itemId = itemId;
this.owner = owner;
}
public String getItemId() {
return this.itemId;
}
public User getOwner() {
return this.owner;
}
}