/* Options: Date: 2026-04-29 05:13:43 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://etc-api.vsmlab.vn //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: DeleteProcurementBatchRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/procurement/batch/{Id}", "DELETE") class DeleteProcurementBatchRequest implements IReturn, IConvertible, IDelete { int? id; DeleteProcurementBatchRequest({this.id}); DeleteProcurementBatchRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { id = json['id']; return this; } Map toJson() => { 'id': id }; createResponse() => bool(); getResponseTypeName() => "bool"; getTypeName() => "DeleteProcurementBatchRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'etc_api.vsmlab.vn', types: { 'DeleteProcurementBatchRequest': TypeInfo(TypeOf.Class, create:() => DeleteProcurementBatchRequest()), });