/* Options: Date: 2025-06-07 16:20:23 Version: 8.12 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://soluser-recaudo.sgsas.co //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: InsertReportRQ.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class InsertReportRS { public isInsertado: boolean; public Error: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/restfiles/InsertReportRQ") export class InsertReportRQ implements IReturn { public usua_login: string; public carp_carp: number; public rept_rept: number; public rept_nombre: string; public rept_tipo: number; public rept_fecmodi: string; public rept_fecelimi: string; public rept_version: string; public rept_tamano: number; public blob_blob: number; public vist_vist: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'InsertReportRQ'; } public getMethod() { return 'POST'; } public createResponse() { return new InsertReportRS(); } }