/* Options: Date: 2026-05-11 11:19:05 Version: 10.06 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://s4w2.api.bettor.webhop.biz //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetBetCancellationInfo.* //ExcludeTypes: //DefaultImports: */ // @ts-nocheck export interface IReturn { createResponse(): T; } export class BetCancellationInfo { public canCancel: boolean; public errors?: { [index:string]: string; }; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/qry/bets/cancInfo") export class GetBetCancellationInfo implements IReturn { public betId?: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetBetCancellationInfo'; } public getMethod() { return 'POST'; } public createResponse() { return new BetCancellationInfo(); } }