/* Options: Date: 2025-08-04 04:16:02 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://szallitoiportal-be.veolia.hu //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: EditPurchaseOrderDeadline.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; abstract class PurchaseOrderBase { int? PurchaseOrderId; int? SupplierUserId; PurchaseOrderBase({this.PurchaseOrderId,this.SupplierUserId}); PurchaseOrderBase.fromJson(Map json) { fromMap(json); } fromMap(Map json) { PurchaseOrderId = json['PurchaseOrderId']; SupplierUserId = json['SupplierUserId']; return this; } Map toJson() => { 'PurchaseOrderId': PurchaseOrderId, 'SupplierUserId': SupplierUserId }; getTypeName() => "PurchaseOrderBase"; TypeContext? context = _ctx; } abstract class ResponseBase { ResponseStatus? ResponseStatus; ResponseBase({this.ResponseStatus}); ResponseBase.fromJson(Map json) { fromMap(json); } fromMap(Map json) { ResponseStatus = JsonConverters.fromJson(json['ResponseStatus'],'ResponseStatus',context!); return this; } Map toJson() => { 'ResponseStatus': JsonConverters.toJson(ResponseStatus,'ResponseStatus',context!) }; getTypeName() => "ResponseBase"; TypeContext? context = _ctx; } class ModifyEntityResponse extends ResponseBase implements IConvertible { int? Id; ModifyEntityResponse({this.Id}); ModifyEntityResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { super.fromMap(json); Id = json['Id']; return this; } Map toJson() => super.toJson()..addAll({ 'Id': Id }); getTypeName() => "ModifyEntityResponse"; TypeContext? context = _ctx; } // @Route("/user/{supplieruserid}/purchaseorder/{purchaseorderid}/deadline", "PUT") class EditPurchaseOrderDeadline extends PurchaseOrderBase implements IReturn, IPut, IConvertible { DateTime? ConfirmationDeadline; EditPurchaseOrderDeadline({this.ConfirmationDeadline}); EditPurchaseOrderDeadline.fromJson(Map json) { fromMap(json); } fromMap(Map json) { super.fromMap(json); ConfirmationDeadline = JsonConverters.fromJson(json['ConfirmationDeadline'],'DateTime',context!); return this; } Map toJson() => super.toJson()..addAll({ 'ConfirmationDeadline': JsonConverters.toJson(ConfirmationDeadline,'DateTime',context!) }); createResponse() => ModifyEntityResponse(); getResponseTypeName() => "ModifyEntityResponse"; getTypeName() => "EditPurchaseOrderDeadline"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'szallitoiportal_be.veolia.hu', types: { 'PurchaseOrderBase': TypeInfo(TypeOf.AbstractClass), 'ResponseBase': TypeInfo(TypeOf.AbstractClass), 'ModifyEntityResponse': TypeInfo(TypeOf.Class, create:() => ModifyEntityResponse()), 'EditPurchaseOrderDeadline': TypeInfo(TypeOf.Class, create:() => EditPurchaseOrderDeadline()), });