/* Options: Date: 2025-11-08 11:21:10 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://s4w2.api.bettor.cc //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetBetCancellationInfo.* //ExcludeTypes: //DefaultImports: */ 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(); } }