/* Options: Date: 2025-12-06 08:27:27 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: AvailableGiftCardRequest.* //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/AvailableGiftCard/{AgentId}", Verbs="GET,OPTIONS") public static class AvailableGiftCardRequest implements IReturn { public Integer AgentId = null; public Integer getAgentId() { return AgentId; } public AvailableGiftCardRequest setAgentId(Integer value) { this.AgentId = value; return this; } private static Object responseType = GiftCardResponse.class; public Object getResponseType() { return responseType; } } public static class GiftCardResponse { public ResponseStatus ResponseStatus = null; public ArrayList GiftCard = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public GiftCardResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getGiftCard() { return GiftCard; } public GiftCardResponse setGiftCard(ArrayList value) { this.GiftCard = value; return this; } } public static class GiftCard { public Integer GiftCardId = null; public Integer AgentId = null; public String CardType = null; public String CardNumber = null; public Integer ContactId = null; public Date DateCreated = null; public Date DateModified = null; public Date DateDeleted = null; public String GiftCardGameSetId = null; public Date FirstApptDate = null; public Boolean IsReferrerCard = null; public String AgentName = null; public String ContactName = null; public Integer getGiftCardId() { return GiftCardId; } public GiftCard setGiftCardId(Integer value) { this.GiftCardId = value; return this; } public Integer getAgentId() { return AgentId; } public GiftCard setAgentId(Integer value) { this.AgentId = value; return this; } public String getCardType() { return CardType; } public GiftCard setCardType(String value) { this.CardType = value; return this; } public String getCardNumber() { return CardNumber; } public GiftCard setCardNumber(String value) { this.CardNumber = value; return this; } public Integer getContactId() { return ContactId; } public GiftCard setContactId(Integer value) { this.ContactId = value; return this; } public Date getDateCreated() { return DateCreated; } public GiftCard setDateCreated(Date value) { this.DateCreated = value; return this; } public Date getDateModified() { return DateModified; } public GiftCard setDateModified(Date value) { this.DateModified = value; return this; } public Date getDateDeleted() { return DateDeleted; } public GiftCard setDateDeleted(Date value) { this.DateDeleted = value; return this; } public String getGiftCardGameSetId() { return GiftCardGameSetId; } public GiftCard setGiftCardGameSetId(String value) { this.GiftCardGameSetId = value; return this; } public Date getFirstApptDate() { return FirstApptDate; } public GiftCard setFirstApptDate(Date value) { this.FirstApptDate = value; return this; } public Boolean getIsReferrerCard() { return IsReferrerCard; } public GiftCard setIsReferrerCard(Boolean value) { this.IsReferrerCard = value; return this; } public String getAgentName() { return AgentName; } public GiftCard setAgentName(String value) { this.AgentName = value; return this; } public String getContactName() { return ContactName; } public GiftCard setContactName(String value) { this.ContactName = value; return this; } } }