/* Options: Date: 2026-06-15 07:24:08 Version: 6.02 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.backgroundchecklatam.com //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: vjGetDataBatchNormativo.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } // @Route("/vjGetDataBatchNormativo/{ApiCode}/{BatchID}") export class vjGetDataBatchNormativo implements IReturn { public ApiCode: string; public BatchID: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'vjGetDataBatchNormativo'; } public getMethod() { return 'POST'; } public createResponse() { return new Array(); } }