/* Options: Date: 2025-06-07 16:24:50 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: UnShareReportRQ.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class UnShareReportRS { public isUnShared: boolean; public error: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/restfiles/UnShareReportRQ") export class UnShareReportRQ implements IReturn { public reporte: number; public usuario: string; public sistema: number; public empresa: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'UnShareReportRQ'; } public getMethod() { return 'POST'; } public createResponse() { return new UnShareReportRS(); } }