/* Options: Date: 2026-05-19 05:30:26 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: MoveTicketsToAnotherEventRequest.* //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="/MoveTicketsToAnotherEventInSeries", Verbs="POST") public static class MoveTicketsToAnotherEventRequest implements IReturn { public Integer fromEventId = null; public Integer toEventId = null; public ArrayList tickets = null; public String reason = null; public Long requestUnixUTCTimeStamp = null; public RequestSignature signature = null; public Integer getFromEventId() { return fromEventId; } public MoveTicketsToAnotherEventRequest setFromEventId(Integer value) { this.fromEventId = value; return this; } public Integer getToEventId() { return toEventId; } public MoveTicketsToAnotherEventRequest setToEventId(Integer value) { this.toEventId = value; return this; } public ArrayList getTickets() { return tickets; } public MoveTicketsToAnotherEventRequest setTickets(ArrayList value) { this.tickets = value; return this; } public String getReason() { return reason; } public MoveTicketsToAnotherEventRequest setReason(String value) { this.reason = value; return this; } public Long getRequestUnixUTCTimeStamp() { return requestUnixUTCTimeStamp; } public MoveTicketsToAnotherEventRequest setRequestUnixUTCTimeStamp(Long value) { this.requestUnixUTCTimeStamp = value; return this; } public RequestSignature getSignature() { return signature; } public MoveTicketsToAnotherEventRequest setSignature(RequestSignature value) { this.signature = value; return this; } private static Object responseType = MoveTicketsToAnotherEventResult.class; public Object getResponseType() { return responseType; } } public static class MoveTicketsToAnotherEventResult { public Integer statusCode = null; public String message = null; public ArrayList movedTicketIds = null; public ArrayList failures = null; public Integer getStatusCode() { return statusCode; } public MoveTicketsToAnotherEventResult setStatusCode(Integer value) { this.statusCode = value; return this; } public String getMessage() { return message; } public MoveTicketsToAnotherEventResult setMessage(String value) { this.message = value; return this; } public ArrayList getMovedTicketIds() { return movedTicketIds; } public MoveTicketsToAnotherEventResult setMovedTicketIds(ArrayList value) { this.movedTicketIds = value; return this; } public ArrayList getFailures() { return failures; } public MoveTicketsToAnotherEventResult setFailures(ArrayList value) { this.failures = value; return this; } } public static class RequestSignature { public String systemId = null; public String systemSecret = null; public String signature = null; public String getSystemId() { return systemId; } public RequestSignature setSystemId(String value) { this.systemId = value; return this; } public String getSystemSecret() { return systemSecret; } public RequestSignature setSystemSecret(String value) { this.systemSecret = value; return this; } public String getSignature() { return signature; } public RequestSignature setSignature(String value) { this.signature = value; return this; } } public static class MoveTicketToAnotherEventEntry { public Integer ticketId = null; public Integer toOwnerTicketTypeId = null; public Integer toSeriesTicketTypeId = null; public Integer getTicketId() { return ticketId; } public MoveTicketToAnotherEventEntry setTicketId(Integer value) { this.ticketId = value; return this; } public Integer getToOwnerTicketTypeId() { return toOwnerTicketTypeId; } public MoveTicketToAnotherEventEntry setToOwnerTicketTypeId(Integer value) { this.toOwnerTicketTypeId = value; return this; } public Integer getToSeriesTicketTypeId() { return toSeriesTicketTypeId; } public MoveTicketToAnotherEventEntry setToSeriesTicketTypeId(Integer value) { this.toSeriesTicketTypeId = value; return this; } } public static class MoveTicketToAnotherEventTicketFailure { public Integer ticketId = null; public String reason = null; public Integer getTicketId() { return ticketId; } public MoveTicketToAnotherEventTicketFailure setTicketId(Integer value) { this.ticketId = value; return this; } public String getReason() { return reason; } public MoveTicketToAnotherEventTicketFailure setReason(String value) { this.reason = value; return this; } } }