/* Options: Date: 2025-12-06 05:58:46 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: TicketTypeSubscriptionRequest.* //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/TicketTypeSubscription", Verbs="POST,DELETE,OPTIONS") // @Route(Path="/v1/TicketTypeSubscription/{TicketTypeId}", Verbs="GET") public static class TicketTypeSubscriptionRequest implements IReturn { public ArrayList TicketTypeSubscription = new ArrayList(); public Integer TicketTypeId = null; public ArrayList getTicketTypeSubscription() { return TicketTypeSubscription; } public TicketTypeSubscriptionRequest setTicketTypeSubscription(ArrayList value) { this.TicketTypeSubscription = value; return this; } public Integer getTicketTypeId() { return TicketTypeId; } public TicketTypeSubscriptionRequest setTicketTypeId(Integer value) { this.TicketTypeId = value; return this; } private static Object responseType = TicketTypeSubscriptionResponse.class; public Object getResponseType() { return responseType; } } public static class TicketTypeSubscriptionResponse { public ResponseStatus ResponseStatus = null; public ArrayList TicketTypeSubscription = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public TicketTypeSubscriptionResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getTicketTypeSubscription() { return TicketTypeSubscription; } public TicketTypeSubscriptionResponse setTicketTypeSubscription(ArrayList value) { this.TicketTypeSubscription = value; return this; } } public static class TicketTypeSubscription { public Integer TicketTypeSubscriptionId = null; public Integer TicketTypeId = null; public Integer AgentId = null; public Integer getTicketTypeSubscriptionId() { return TicketTypeSubscriptionId; } public TicketTypeSubscription setTicketTypeSubscriptionId(Integer value) { this.TicketTypeSubscriptionId = value; return this; } public Integer getTicketTypeId() { return TicketTypeId; } public TicketTypeSubscription setTicketTypeId(Integer value) { this.TicketTypeId = value; return this; } public Integer getAgentId() { return AgentId; } public TicketTypeSubscription setAgentId(Integer value) { this.AgentId = value; return this; } } public static class TicketTypeSubscriptionExtended extends TicketTypeSubscription { public String AgentName = null; public String TicketType = null; public String getAgentName() { return AgentName; } public TicketTypeSubscriptionExtended setAgentName(String value) { this.AgentName = value; return this; } public String getTicketType() { return TicketType; } public TicketTypeSubscriptionExtended setTicketType(String value) { this.TicketType = value; return this; } } }