/* Options: Date: 2024-12-23 11:40:42 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://consumer-api.brovs.com //GlobalNamespace: ConsumerApi //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: LotteryAvailabePointsRequest.* //ExcludeTypes: //DefaultImports: */ export module ConsumerApi { // @ts-nocheck export interface IReturn { createResponse(): T; } export interface IGet { } export class LotteryAvailabePointsResponse { public availablePoints?: number|null; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/lottery/points", "GET") export class LotteryAvailabePointsRequest implements IReturn, IGet { public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'LotteryAvailabePointsRequest'; } public getMethod() { return 'GET'; } public createResponse() { return new LotteryAvailabePointsResponse(); } } }