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