/* Options: Date: 2026-06-15 06:55:50 Version: 6.02 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.backgroundchecklatam.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: vjCheckStatusBatchNormativo.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route("/vjCheckStatusBatchNormativo/{ApiCode}/{BatchID}") public static class vjCheckStatusBatchNormativo implements IReturn { public String ApiCode = null; public Integer BatchID = null; public String getApiCode() { return ApiCode; } public vjCheckStatusBatchNormativo setApiCode(String value) { this.ApiCode = value; return this; } public Integer getBatchID() { return BatchID; } public vjCheckStatusBatchNormativo setBatchID(Integer value) { this.BatchID = value; return this; } private static Object responseType = Integer.class; public Object getResponseType() { return responseType; } } }