/* Options: Date: 2026-07-03 06:50:58 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stubbur-app.azurewebsites.net //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: EventSeatingMoveTicketToAnotherEventRequest.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class RequestSignature { public systemId: string; public systemSecret: string; public signature: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class MoveTicketToAnotherEventPair { public fromSeatId: number; public toSeatId: number; public toSeriesTicketTypeId?: number; public toOwnerTicketTypeId?: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class MoveTicketToAnotherEventFailure { public fromSeatId: number; public toSeatId: number; public reason: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class MoveTicketToAnotherEventSeatQuote { public fromSeatId: number; public toSeatId: number; public ticketTokenId: string; public fromPrice: number; public toPrice: number; public difference: number; public toSeatName: string; public ok: boolean; public message: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class EventSeatingMoveTicketToAnotherEventResult { public statusCode: number; public message: string; public movedSeatIds: number[]; public failures: MoveTicketToAnotherEventFailure[]; public direction: string; public priceDifference: number; public reconciliationSkipped: boolean; public sourceEventPaidOut: boolean; public outstandingCostHandledByServer: boolean; public reconciliationLogId?: number; public refundAmount?: number; public refundPaymentReference: string; public seats: MoveTicketToAnotherEventSeatQuote[]; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/EventSeatingMoveTicketToAnotherEventInSeries", "POST") export class EventSeatingMoveTicketToAnotherEventRequest implements IReturn { public fromEventId: number; public toEventId: number; public moves: MoveTicketToAnotherEventPair[]; public reason: string; public quoteOnly: boolean; public expectedPriceDifference: number; public skipReconciliation: boolean; public idempotencyKey: string; public userId?: number; public requestUnixUTCTimeStamp: number; public signature: RequestSignature; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'EventSeatingMoveTicketToAnotherEventRequest'; } public getMethod() { return 'POST'; } public createResponse() { return new EventSeatingMoveTicketToAnotherEventResult(); } }