/* Options: Date: 2025-05-06 13:35:43 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: EventsSearchRequest.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class Event { 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 defaultValues: string; public externalReferenceType: string; public postponedNoDate?: boolean; public awayTeamExternalId: string; public sportGenderId: string; public saleIsActive?: boolean; public seatingImageUrl: string; public venueId?: number; public awayTeamOwnerId?: number; public detailedDescription: string; public imageUrl: string; public directAccessCode: string; public imageUrl2: string; public hideEvent?: boolean; public ownerCardsNotAllowed?: boolean; public endOfEvent?: string; public endOfEventUTC?: string; public timeZone: string; public timeOfEventUTC?: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class EventsResult { public items: Event[]; public statusCode: number; public message: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/Event/Search", "POST") export class EventsSearchRequest implements IReturn { public name: string; public externalID: string; public externalIdType: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'EventsSearchRequest'; } public getMethod() { return 'POST'; } public createResponse() { return new EventsResult(); } }