/* Options: Date: 2025-12-06 07:08:22 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: DeleteWearPriceProfileRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ library BackofficeApi; import 'package:servicestack/servicestack.dart'; class DeleteWearPriceProfileResponse implements IConvertible { bool? success; DeleteWearPriceProfileResponse({this.success}); DeleteWearPriceProfileResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { success = json['success']; return this; } Map toJson() => { 'success': success }; getTypeName() => "DeleteWearPriceProfileResponse"; TypeContext? context = _ctx; } // @Route("/wear_price_profile/delete", "DELETE") class DeleteWearPriceProfileRequest implements IReturn, IDelete, IConvertible { String? slug; DeleteWearPriceProfileRequest({this.slug}); DeleteWearPriceProfileRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { slug = json['slug']; return this; } Map toJson() => { 'slug': slug }; createResponse() => DeleteWearPriceProfileResponse(); getResponseTypeName() => "DeleteWearPriceProfileResponse"; getTypeName() => "DeleteWearPriceProfileRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'BackofficeApi', types: { 'DeleteWearPriceProfileResponse': TypeInfo(TypeOf.Class, create:() => DeleteWearPriceProfileResponse()), 'DeleteWearPriceProfileRequest': TypeInfo(TypeOf.Class, create:() => DeleteWearPriceProfileRequest()), });