/* Options: Date: 2025-05-06 14:11:37 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://stubbur-autoupdates-live.smartnewapis.com //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetEventDetails.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class EventDetails { public id: number; public name: string; public description: string; public externalReference: string; public timeOfEvent: string; public eventLocationId?: number; public eventSeriesId?: number; public eventOwnerId?: number; public eventActive: boolean; public eventOwnerName: string; public externalOwnerId: string; public teamAwayId: string; public teamAwayName: string; public eventSeriesName: string; public eventLocationName: string; public latitude: number; public longitude: number; public defaultValues: string; public externalReferenceType: string; public eventSeriesActive?: boolean; public allowedKsiCard: string; public seriesId: string; public seriesShowByDefault?: boolean; public postponedNoDate?: boolean; public awayTeamExternalId: string; public sportGenderId: string; public externalIdType: string; public seriesEventSaleSuspended?: boolean; public seriesSaleSuspensionEventStartDate?: string; public seriesSaleSuspensionEventEndDate?: string; public saleIsActive?: boolean; public hideEvent?: boolean; public imageUrl2: string; public directAccessCode: string; public imageUrl: string; public detailedDescription: string; public ownerImageUrl: string; public ownerImageUrl2: string; public ownerCardsNotAllowed?: boolean; public seatingImageUrl: string; public endOfEvent?: string; public endOfEventUTC?: string; public timeZone: string; public timeOfEventUTC?: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/eventDetails/{Id}", "GET POST") // @Route("/eventDetails/Reference/{ReferenceId}", "GET POST") export class GetEventDetails implements IReturn { public id?: number; public referenceId: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetEventDetails'; } public getMethod() { return 'POST'; } public createResponse() { return new EventDetails(); } }