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