/* Options: Date: 2025-12-06 05:26:35 Version: 8.70 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.sbbet.ath.cx //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: FindSlips.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export enum SlipFormat { Default = 0, WalletDTO = 1, } export interface IPaginatedResult { currentPage: number; pageSize: number; totalItems: number; totalPages: number; } export class PaginatedResult implements IPaginatedResult { public data: T[] = []; public currentPage: number; public pageSize: number; public totalItems: number; public totalPages: number; public constructor(init?: Partial>) { (Object as any).assign(this, init); } } // @Route("/qry/slips") export class FindSlips implements IReturn> { public id: string; public slipFormat: SlipFormat; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'FindSlips'; } public getMethod() { return 'POST'; } public createResponse() { return new PaginatedResult(); } }