/* Options: Date: 2026-08-17 09:11:34 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: ReseatWithinEventRequest.* //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="/EventSeating/ReseatWithinEvent", Verbs="POST") public static class ReseatWithinEventRequest implements IReturn { public Integer eventId = null; public ArrayList moves = null; public BigDecimal expectedPriceDifference = null; public Boolean skipReconciliation = null; public String reason = null; public String idempotencyKey = null; public Integer userId = null; public Integer getEventId() { return eventId; } public ReseatWithinEventRequest setEventId(Integer value) { this.eventId = value; return this; } public ArrayList getMoves() { return moves; } public ReseatWithinEventRequest setMoves(ArrayList value) { this.moves = value; return this; } public BigDecimal getExpectedPriceDifference() { return expectedPriceDifference; } public ReseatWithinEventRequest setExpectedPriceDifference(BigDecimal value) { this.expectedPriceDifference = value; return this; } public Boolean isSkipReconciliation() { return skipReconciliation; } public ReseatWithinEventRequest setSkipReconciliation(Boolean value) { this.skipReconciliation = value; return this; } public String getReason() { return reason; } public ReseatWithinEventRequest setReason(String value) { this.reason = value; return this; } public String getIdempotencyKey() { return idempotencyKey; } public ReseatWithinEventRequest setIdempotencyKey(String value) { this.idempotencyKey = value; return this; } public Integer getUserId() { return userId; } public ReseatWithinEventRequest setUserId(Integer value) { this.userId = value; return this; } private static Object responseType = ReseatWithinEventResult.class; public Object getResponseType() { return responseType; } } public static class ReseatWithinEventResult { public Boolean ok = null; public Integer statusCode = null; public String message = null; public String direction = null; public BigDecimal priceDifference = null; public Boolean reconciliationSkipped = null; public Integer reconciliationLogId = null; public BigDecimal refundAmount = null; public String refundPaymentReference = null; public ArrayList movedSeatIds = null; public ArrayList failures = null; public Boolean isOk() { return ok; } public ReseatWithinEventResult setOk(Boolean value) { this.ok = value; return this; } public Integer getStatusCode() { return statusCode; } public ReseatWithinEventResult setStatusCode(Integer value) { this.statusCode = value; return this; } public String getMessage() { return message; } public ReseatWithinEventResult setMessage(String value) { this.message = value; return this; } public String getDirection() { return direction; } public ReseatWithinEventResult setDirection(String value) { this.direction = value; return this; } public BigDecimal getPriceDifference() { return priceDifference; } public ReseatWithinEventResult setPriceDifference(BigDecimal value) { this.priceDifference = value; return this; } public Boolean isReconciliationSkipped() { return reconciliationSkipped; } public ReseatWithinEventResult setReconciliationSkipped(Boolean value) { this.reconciliationSkipped = value; return this; } public Integer getReconciliationLogId() { return reconciliationLogId; } public ReseatWithinEventResult setReconciliationLogId(Integer value) { this.reconciliationLogId = value; return this; } public BigDecimal getRefundAmount() { return refundAmount; } public ReseatWithinEventResult setRefundAmount(BigDecimal value) { this.refundAmount = value; return this; } public String getRefundPaymentReference() { return refundPaymentReference; } public ReseatWithinEventResult setRefundPaymentReference(String value) { this.refundPaymentReference = value; return this; } public ArrayList getMovedSeatIds() { return movedSeatIds; } public ReseatWithinEventResult setMovedSeatIds(ArrayList value) { this.movedSeatIds = value; return this; } public ArrayList getFailures() { return failures; } public ReseatWithinEventResult setFailures(ArrayList value) { this.failures = value; return this; } } public static class ReseatMovePair { public Integer fromSeatId = null; public Integer toSeatId = null; public Integer toOwnerTicketTypeId = null; public Integer getFromSeatId() { return fromSeatId; } public ReseatMovePair setFromSeatId(Integer value) { this.fromSeatId = value; return this; } public Integer getToSeatId() { return toSeatId; } public ReseatMovePair setToSeatId(Integer value) { this.toSeatId = value; return this; } public Integer getToOwnerTicketTypeId() { return toOwnerTicketTypeId; } public ReseatMovePair setToOwnerTicketTypeId(Integer value) { this.toOwnerTicketTypeId = value; return this; } } public static class MoveConfirmedSeatFailure { public Integer fromSeatId = null; public Integer toSeatId = null; public String reason = null; public Integer getFromSeatId() { return fromSeatId; } public MoveConfirmedSeatFailure setFromSeatId(Integer value) { this.fromSeatId = value; return this; } public Integer getToSeatId() { return toSeatId; } public MoveConfirmedSeatFailure setToSeatId(Integer value) { this.toSeatId = value; return this; } public String getReason() { return reason; } public MoveConfirmedSeatFailure setReason(String value) { this.reason = value; return this; } } }