/* Options: Date: 2026-05-11 11:13:43 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: GetLocationFeed.* //ExcludeTypes: //DefaultImports: */ // @ts-nocheck export interface IReturn { createResponse(): T; } export class Ref { public id: string; public val: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class BettingApp { public name?: string; public version?: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class RefEx extends Ref { public data: RecordDictionary; public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); } } export class Origin { public application?: BettingApp; public ip?: string; public organization?: RefEx; public region?: Ref; public locationGroup?: Ref; public location?: RefEx; public device?: RefEx; public clerk?: Ref; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class Dictionary { [Key: string]: T; } export class RecordDictionary extends Dictionary { public constructor(init?: Partial>) { super(); (Object as any).assign(this, init); } } export class CurrentRoundInfo { public roundId?: string; public amount: number; public inertCode?: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class WinnerByCode { public roundId?: string; public drawnAtUtc: string; public slipId?: string; public betId?: string; public code?: string; public amount: number; public origin?: Origin; public bettor?: Ref; public locationAddressOrBettorInfo?: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class LocalCodePotInfo { public isActive: boolean; public current?: CurrentRoundInfo; public winners?: WinnerByCode[]; public constructor(init?: Partial) { (Object as any).assign(this, init); } } export class LocationFeed { public exists: boolean; public id?: string; public lcpInfo?: LocalCodePotInfo; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/qry/feed/locations") export class GetLocationFeed implements IReturn { public id?: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'GetLocationFeed'; } public getMethod() { return 'POST'; } public createResponse() { return new LocationFeed(); } }