/* Options: Date: 2025-12-06 07:06:19 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: PlaceRemoveRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ library BackofficeApi; import 'package:servicestack/servicestack.dart'; class PlaceRemoveResponse implements IConvertible { int? id; PlaceRemoveResponse({this.id}); PlaceRemoveResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { id = json['id']; return this; } Map toJson() => { 'id': id }; getTypeName() => "PlaceRemoveResponse"; TypeContext? context = _ctx; } // @Route("/place/remove", "POST") class PlaceRemoveRequest implements IReturn, IPost, IConvertible { int? id; PlaceRemoveRequest({this.id}); PlaceRemoveRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { id = json['id']; return this; } Map toJson() => { 'id': id }; createResponse() => PlaceRemoveResponse(); getResponseTypeName() => "PlaceRemoveResponse"; getTypeName() => "PlaceRemoveRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'BackofficeApi', types: { 'PlaceRemoveResponse': TypeInfo(TypeOf.Class, create:() => PlaceRemoveResponse()), 'PlaceRemoveRequest': TypeInfo(TypeOf.Class, create:() => PlaceRemoveRequest()), });