/* Options: Date: 2026-05-19 04:43:51 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: CalculateDiscountPricesRequest.* //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="/ticketOrder/CalculatePrices", Verbs="GET POST") public static class CalculateDiscountPricesRequest implements IReturn { public String discountCode = null; public String fullPhoneNumber = null; public Integer eventId = null; public ArrayList orderDetails = null; public String getDiscountCode() { return discountCode; } public CalculateDiscountPricesRequest setDiscountCode(String value) { this.discountCode = value; return this; } public String getFullPhoneNumber() { return fullPhoneNumber; } public CalculateDiscountPricesRequest setFullPhoneNumber(String value) { this.fullPhoneNumber = value; return this; } public Integer getEventId() { return eventId; } public CalculateDiscountPricesRequest setEventId(Integer value) { this.eventId = value; return this; } public ArrayList getOrderDetails() { return orderDetails; } public CalculateDiscountPricesRequest setOrderDetails(ArrayList value) { this.orderDetails = value; return this; } private static Object responseType = CalculateDiscountPricesResult.class; public Object getResponseType() { return responseType; } } public static class CalculateDiscountPricesResult { public ArrayList orderDetails = null; public Integer statusCode = null; public String message = null; public ArrayList getOrderDetails() { return orderDetails; } public CalculateDiscountPricesResult setOrderDetails(ArrayList value) { this.orderDetails = value; return this; } public Integer getStatusCode() { return statusCode; } public CalculateDiscountPricesResult setStatusCode(Integer value) { this.statusCode = value; return this; } public String getMessage() { return message; } public CalculateDiscountPricesResult setMessage(String value) { this.message = value; return this; } } public static class TicketDetails { public Integer id = null; public Integer ticketId = null; public Integer eventSeriesTicketType = null; public Integer eventSeriesOwnerTicketType = null; public BigDecimal ticketPrice = null; public BigDecimal totalPrice = null; public Integer count = null; public String ticketColor = null; public Boolean showUsedTickets = null; public String ticketName = null; public String ticketDisplayString = null; public Integer ticketDetailsTransferredFrom = null; public Integer teamPassId = null; public Boolean isSpecialTicket = null; public String specialTicketId = null; public Boolean justChangedBySQL = null; public Date sqlJustChangedTimeStamp = null; public String currency = null; public String discountCode = null; public BigDecimal totalDiscount = null; public BigDecimal totalAmountBeforeDiscount = null; public BigDecimal ticketPriceBeforeDiscount = null; public Integer getId() { return id; } public TicketDetails setId(Integer value) { this.id = value; return this; } public Integer getTicketId() { return ticketId; } public TicketDetails setTicketId(Integer value) { this.ticketId = value; return this; } public Integer getEventSeriesTicketType() { return eventSeriesTicketType; } public TicketDetails setEventSeriesTicketType(Integer value) { this.eventSeriesTicketType = value; return this; } public Integer getEventSeriesOwnerTicketType() { return eventSeriesOwnerTicketType; } public TicketDetails setEventSeriesOwnerTicketType(Integer value) { this.eventSeriesOwnerTicketType = value; return this; } public BigDecimal getTicketPrice() { return ticketPrice; } public TicketDetails setTicketPrice(BigDecimal value) { this.ticketPrice = value; return this; } public BigDecimal getTotalPrice() { return totalPrice; } public TicketDetails setTotalPrice(BigDecimal value) { this.totalPrice = value; return this; } public Integer getCount() { return count; } public TicketDetails setCount(Integer value) { this.count = value; return this; } public String getTicketColor() { return ticketColor; } public TicketDetails setTicketColor(String value) { this.ticketColor = value; return this; } public Boolean isShowUsedTickets() { return showUsedTickets; } public TicketDetails setShowUsedTickets(Boolean value) { this.showUsedTickets = value; return this; } public String getTicketName() { return ticketName; } public TicketDetails setTicketName(String value) { this.ticketName = value; return this; } public String getTicketDisplayString() { return ticketDisplayString; } public TicketDetails setTicketDisplayString(String value) { this.ticketDisplayString = value; return this; } public Integer getTicketDetailsTransferredFrom() { return ticketDetailsTransferredFrom; } public TicketDetails setTicketDetailsTransferredFrom(Integer value) { this.ticketDetailsTransferredFrom = value; return this; } public Integer getTeamPassId() { return teamPassId; } public TicketDetails setTeamPassId(Integer value) { this.teamPassId = value; return this; } public Boolean getIsSpecialTicket() { return isSpecialTicket; } public TicketDetails setIsSpecialTicket(Boolean value) { this.isSpecialTicket = value; return this; } public String getSpecialTicketId() { return specialTicketId; } public TicketDetails setSpecialTicketId(String value) { this.specialTicketId = value; return this; } public Boolean isJustChangedBySQL() { return justChangedBySQL; } public TicketDetails setJustChangedBySQL(Boolean value) { this.justChangedBySQL = value; return this; } public Date getSqlJustChangedTimeStamp() { return sqlJustChangedTimeStamp; } public TicketDetails setSqlJustChangedTimeStamp(Date value) { this.sqlJustChangedTimeStamp = value; return this; } public String getCurrency() { return currency; } public TicketDetails setCurrency(String value) { this.currency = value; return this; } public String getDiscountCode() { return discountCode; } public TicketDetails setDiscountCode(String value) { this.discountCode = value; return this; } public BigDecimal getTotalDiscount() { return totalDiscount; } public TicketDetails setTotalDiscount(BigDecimal value) { this.totalDiscount = value; return this; } public BigDecimal getTotalAmountBeforeDiscount() { return totalAmountBeforeDiscount; } public TicketDetails setTotalAmountBeforeDiscount(BigDecimal value) { this.totalAmountBeforeDiscount = value; return this; } public BigDecimal getTicketPriceBeforeDiscount() { return ticketPriceBeforeDiscount; } public TicketDetails setTicketPriceBeforeDiscount(BigDecimal value) { this.ticketPriceBeforeDiscount = value; return this; } } }