/* Options: Date: 2025-08-04 03:10:32 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: DeleteApplicationUserCommodityCode.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; 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/{userid}/commoditycode/{commoditycodeid}", "DELETE") class DeleteApplicationUserCommodityCode implements IReturn, IDelete, IConvertible { int? UserId; int? CommodityCodeId; int? UserCommodityCodeId; DeleteApplicationUserCommodityCode({this.UserId,this.CommodityCodeId,this.UserCommodityCodeId}); DeleteApplicationUserCommodityCode.fromJson(Map json) { fromMap(json); } fromMap(Map json) { UserId = json['UserId']; CommodityCodeId = json['CommodityCodeId']; UserCommodityCodeId = json['UserCommodityCodeId']; return this; } Map toJson() => { 'UserId': UserId, 'CommodityCodeId': CommodityCodeId, 'UserCommodityCodeId': UserCommodityCodeId }; createResponse() => ModifyEntityResponse(); getResponseTypeName() => "ModifyEntityResponse"; getTypeName() => "DeleteApplicationUserCommodityCode"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'szallitoiportal_be.veolia.hu', types: { 'ResponseBase': TypeInfo(TypeOf.AbstractClass), 'ModifyEntityResponse': TypeInfo(TypeOf.Class, create:() => ModifyEntityResponse()), 'DeleteApplicationUserCommodityCode': TypeInfo(TypeOf.Class, create:() => DeleteApplicationUserCommodityCode()), });