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