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