/* Options: Date: 2025-12-06 05:57:44 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: AssignedGiftCardGameSetRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { @Route(Path="/v1/AssignedGiftCardGameSet", Verbs="GET,OPTIONS") public static class AssignedGiftCardGameSetRequest implements IReturn { private static Object responseType = GiftCardGameSetResponse.class; public Object getResponseType() { return responseType; } } public static class GiftCardGameSetResponse { public ResponseStatus ResponseStatus = null; public ArrayList GiftCardGameSet = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public GiftCardGameSetResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getGiftCardGameSet() { return GiftCardGameSet; } public GiftCardGameSetResponse setGiftCardGameSet(ArrayList value) { this.GiftCardGameSet = value; return this; } } public static class GiftCardGameSet { public Integer GiftCardGameSetId = null; public Integer AgentId = null; public String AgentName = null; public Date CreatedDate = null; public String TrackingNumber = null; public String ShipDate = null; public String SerialNumber = null; public Integer getGiftCardGameSetId() { return GiftCardGameSetId; } public GiftCardGameSet setGiftCardGameSetId(Integer value) { this.GiftCardGameSetId = value; return this; } public Integer getAgentId() { return AgentId; } public GiftCardGameSet setAgentId(Integer value) { this.AgentId = value; return this; } public String getAgentName() { return AgentName; } public GiftCardGameSet setAgentName(String value) { this.AgentName = value; return this; } public Date getCreatedDate() { return CreatedDate; } public GiftCardGameSet setCreatedDate(Date value) { this.CreatedDate = value; return this; } public String getTrackingNumber() { return TrackingNumber; } public GiftCardGameSet setTrackingNumber(String value) { this.TrackingNumber = value; return this; } public String getShipDate() { return ShipDate; } public GiftCardGameSet setShipDate(String value) { this.ShipDate = value; return this; } public String getSerialNumber() { return SerialNumber; } public GiftCardGameSet setSerialNumber(String value) { this.SerialNumber = value; return this; } } }