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