/* Options: Date: 2026-05-11 08:51:48 Version: 10.06 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bettor.webhop.biz //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetBettorWallet.* //ExcludeTypes: //DefaultImports: */ // @ts-nocheck export interface IReturn { createResponse(): T; } export class Money { public amount: number; public currency: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class Wallet { public balance?: Money; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/qry/wallet/bettor") export class GetBettorWallet implements IReturn { public bettorId?: string; public sessionId?: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetBettorWallet'; } public getMethod() { return 'POST'; } public createResponse() { return new Wallet(); } }