/* Options: Date: 2026-05-19 05:29:36 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stubbur-app.azurewebsites.net //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: DiscountCodeTypeValidTicketTypesSearchRequest.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/DiscountCodeTypeValidTicketType/Search", Verbs="POST") public static class DiscountCodeTypeValidTicketTypesSearchRequest implements IReturn { public Integer discountCodeTypeId = null; public Integer eventSeriesOwnerTicketType = null; public Integer getDiscountCodeTypeId() { return discountCodeTypeId; } public DiscountCodeTypeValidTicketTypesSearchRequest setDiscountCodeTypeId(Integer value) { this.discountCodeTypeId = value; return this; } public Integer getEventSeriesOwnerTicketType() { return eventSeriesOwnerTicketType; } public DiscountCodeTypeValidTicketTypesSearchRequest setEventSeriesOwnerTicketType(Integer value) { this.eventSeriesOwnerTicketType = value; return this; } private static Object responseType = DiscountCodeTypeValidTicketTypesResult.class; public Object getResponseType() { return responseType; } } public static class DiscountCodeTypeValidTicketTypesResult { public ArrayList items = null; public Integer statusCode = null; public String message = null; public ArrayList getItems() { return items; } public DiscountCodeTypeValidTicketTypesResult setItems(ArrayList value) { this.items = value; return this; } public Integer getStatusCode() { return statusCode; } public DiscountCodeTypeValidTicketTypesResult setStatusCode(Integer value) { this.statusCode = value; return this; } public String getMessage() { return message; } public DiscountCodeTypeValidTicketTypesResult setMessage(String value) { this.message = value; return this; } } public static class DiscountCodeTypeValidTicketType { public Integer id = null; public Integer discountCodeTypeId = null; public Integer eventSeriesOwnerTicketType = null; public Boolean isValid = null; public Integer getId() { return id; } public DiscountCodeTypeValidTicketType setId(Integer value) { this.id = value; return this; } public Integer getDiscountCodeTypeId() { return discountCodeTypeId; } public DiscountCodeTypeValidTicketType setDiscountCodeTypeId(Integer value) { this.discountCodeTypeId = value; return this; } public Integer getEventSeriesOwnerTicketType() { return eventSeriesOwnerTicketType; } public DiscountCodeTypeValidTicketType setEventSeriesOwnerTicketType(Integer value) { this.eventSeriesOwnerTicketType = value; return this; } public Boolean getIsValid() { return isValid; } public DiscountCodeTypeValidTicketType setIsValid(Boolean value) { this.isValid = value; return this; } } }