/* Options: Date: 2026-02-13 08:03:54 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: DeleteDocumentReferenceRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/document-reference/{Id}", "DELETE") class DeleteDocumentReferenceRequest implements IReturn, IConvertible, IDelete { int? id; DeleteDocumentReferenceRequest({this.id}); DeleteDocumentReferenceRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { id = json['id']; return this; } Map toJson() => { 'id': id }; createResponse() => bool(); getResponseTypeName() => "bool"; getTypeName() => "DeleteDocumentReferenceRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'etc_api.vsmlab.vn', types: { 'DeleteDocumentReferenceRequest': TypeInfo(TypeOf.Class, create:() => DeleteDocumentReferenceRequest()), });