/* Options: Date: 2026-05-19 04:43:36 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 EventSeatingMoveTicketToAnotherEventResult { public statusCode: number; public message: string; public movedSeatIds: number[]; public failures: MoveTicketToAnotherEventFailure[]; 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 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(); } }