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