/* Options: Date: 2025-06-13 05:24:04 Version: 6.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://ws.jimsnwa.com //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ValoresDefectoFormaRQ.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export class ValoresDefectoFormaRS { public ValoresDefecto: { [index: string]: Object; }; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/Utilidades/Formas/ValoresDefecto") export class ValoresDefectoFormaRQ implements IReturn { public IDTabla: number; public Parametros: { [index: string]: Object; }; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'ValoresDefectoFormaRQ'; } public getMethod() { return 'POST'; } public createResponse() { return new ValoresDefectoFormaRS(); } }