/* Options: Date: 2025-05-06 13:07:40 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: EventOwnerTicketTypeToCardConnectionSearchRequest.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class EventOwnerTicketTypeToCardConnection { public id: number; public ownerCardTypeId: number; public ownerTicketTypeId: number; public active: boolean; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class EventOwnerTicketTypeToCardConnectionSearchResult { public items: EventOwnerTicketTypeToCardConnection[]; public statusCode: number; public message: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/EventOwnerTicketTypeToCardConnections", "POST") export class EventOwnerTicketTypeToCardConnectionSearchRequest implements IReturn { public cardTypeId?: number; public ticketTypeId?: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'EventOwnerTicketTypeToCardConnectionSearchRequest'; } public getMethod() { return 'POST'; } public createResponse() { return new EventOwnerTicketTypeToCardConnectionSearchResult(); } }