/* Options: Date: 2026-06-15 07:44:25 Version: 6.02 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.backgroundchecklatam.com //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: vjCheckStatusBatchNormativo.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/vjCheckStatusBatchNormativo/{ApiCode}/{BatchID}") class vjCheckStatusBatchNormativo implements IReturn, IConvertible { String? ApiCode; int? BatchID; vjCheckStatusBatchNormativo({this.ApiCode,this.BatchID}); vjCheckStatusBatchNormativo.fromJson(Map json) { fromMap(json); } fromMap(Map json) { ApiCode = json['ApiCode']; BatchID = json['BatchID']; return this; } Map toJson() => { 'ApiCode': ApiCode, 'BatchID': BatchID }; createResponse() => 0; getResponseTypeName() => "int"; getTypeName() => "vjCheckStatusBatchNormativo"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'api.backgroundchecklatam.com', types: { 'vjCheckStatusBatchNormativo': TypeInfo(TypeOf.Class, create:() => vjCheckStatusBatchNormativo()), });