/* Options: Date: 2026-06-15 07:32:11 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: vjGetDataBatchNormativo.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/vjGetDataBatchNormativo/{ApiCode}/{BatchID}") class vjGetDataBatchNormativo implements IReturn>, IConvertible { String? ApiCode; int? BatchID; vjGetDataBatchNormativo({this.ApiCode,this.BatchID}); vjGetDataBatchNormativo.fromJson(Map json) { fromMap(json); } fromMap(Map json) { ApiCode = json['ApiCode']; BatchID = json['BatchID']; return this; } Map toJson() => { 'ApiCode': ApiCode, 'BatchID': BatchID }; createResponse() => []; getResponseTypeName() => "List"; getTypeName() => "vjGetDataBatchNormativo"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'api.backgroundchecklatam.com', types: { 'vjGetDataBatchNormativo': TypeInfo(TypeOf.Class, create:() => vjGetDataBatchNormativo()), });