/* Options: Date: 2025-12-06 07:55:50 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: TicketTypeRequest.* //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/TicketType", Verbs="GET") public static class TicketTypeRequest implements IReturn { public ArrayList TicketType = new ArrayList(); public ArrayList getTicketType() { return TicketType; } public TicketTypeRequest setTicketType(ArrayList value) { this.TicketType = value; return this; } private static Object responseType = TicketTypeResponse.class; public Object getResponseType() { return responseType; } } public static class TicketTypeResponse { public ResponseStatus ResponseStatus = null; public ArrayList TicketType = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public TicketTypeResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getTicketType() { return TicketType; } public TicketTypeResponse setTicketType(ArrayList value) { this.TicketType = value; return this; } } public static class TicketType { public Integer TicketTypeId = null; public String Description = null; public Integer getTicketTypeId() { return TicketTypeId; } public TicketType setTicketTypeId(Integer value) { this.TicketTypeId = value; return this; } public String getDescription() { return Description; } public TicketType setDescription(String value) { this.Description = value; return this; } } }