/* Options: Date: 2025-06-07 16:25:33 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: DeleteFileBxRQ.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class DeleteFileRS { public isDelete: boolean; public error: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/restfiles/files") // @Route("/restfiles/files/{Path*}") export class RestFiles { public Path: string; public TextContents: string; public ForDownload: boolean; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'RestFiles'; } public getMethod() { return 'GET'; } public createResponse() {} } // @Route("/restfiles/DeleteFileBxRQ") export class DeleteFileBxRQ implements IReturn { public idArchivo: number; public usua_login: string; public carp_carp: number; public isDirectory: boolean; public empr_empr: number; public sist_sist: number; public path: string; public dataDelete: RestFiles; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'DeleteFileBxRQ'; } public getMethod() { return 'POST'; } public createResponse() { return new DeleteFileRS(); } }