/* Options: Date: 2026-06-15 07:00:44 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: vjCheckStatusBatchNormativo.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } // @Route("/vjCheckStatusBatchNormativo/{ApiCode}/{BatchID}") export class vjCheckStatusBatchNormativo implements IReturn { public ApiCode: string; public BatchID: number; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'vjCheckStatusBatchNormativo'; } public getMethod() { return 'POST'; } public createResponse() { return 0; } }