/* Options: Date: 2025-12-06 07:08:27 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://backoffice-api.brovs.com //GlobalNamespace: BackofficeApi //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: UpdateOrderOfWearPriceProfileRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ library BackofficeApi; import 'package:servicestack/servicestack.dart'; class UpdateOrderOfWearPriceProfileResponse implements IConvertible { bool? success; UpdateOrderOfWearPriceProfileResponse({this.success}); UpdateOrderOfWearPriceProfileResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { success = json['success']; return this; } Map toJson() => { 'success': success }; getTypeName() => "UpdateOrderOfWearPriceProfileResponse"; TypeContext? context = _ctx; } // @Route("/wear_price_profile/update_order", "PUT") class UpdateOrderOfWearPriceProfileRequest implements IReturn, IPut, IConvertible { List? slugs = []; UpdateOrderOfWearPriceProfileRequest({this.slugs}); UpdateOrderOfWearPriceProfileRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { slugs = JsonConverters.fromJson(json['slugs'],'List',context!); return this; } Map toJson() => { 'slugs': JsonConverters.toJson(slugs,'List',context!) }; createResponse() => UpdateOrderOfWearPriceProfileResponse(); getResponseTypeName() => "UpdateOrderOfWearPriceProfileResponse"; getTypeName() => "UpdateOrderOfWearPriceProfileRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'BackofficeApi', types: { 'UpdateOrderOfWearPriceProfileResponse': TypeInfo(TypeOf.Class, create:() => UpdateOrderOfWearPriceProfileResponse()), 'UpdateOrderOfWearPriceProfileRequest': TypeInfo(TypeOf.Class, create:() => UpdateOrderOfWearPriceProfileRequest()), });