/* Options: Date: 2025-12-06 07:06:53 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://business-api.brovs.com //GlobalNamespace: BusinessApi //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: PlaceOwnerEmailGetRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ library BusinessApi; import 'package:servicestack/servicestack.dart'; class PlaceOwnerEmailGetResponse implements IConvertible { String? email; PlaceOwnerEmailGetResponse({this.email}); PlaceOwnerEmailGetResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { email = json['email']; return this; } Map toJson() => { 'email': email }; getTypeName() => "PlaceOwnerEmailGetResponse"; TypeContext? context = _ctx; } // @Route("/place/get_owner_email", "GET") class PlaceOwnerEmailGetRequest implements IReturn, IGet, IConvertible { int? placeId; PlaceOwnerEmailGetRequest({this.placeId}); PlaceOwnerEmailGetRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { placeId = json['placeId']; return this; } Map toJson() => { 'placeId': placeId }; createResponse() => PlaceOwnerEmailGetResponse(); getResponseTypeName() => "PlaceOwnerEmailGetResponse"; getTypeName() => "PlaceOwnerEmailGetRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'BusinessApi', types: { 'PlaceOwnerEmailGetResponse': TypeInfo(TypeOf.Class, create:() => PlaceOwnerEmailGetResponse()), 'PlaceOwnerEmailGetRequest': TypeInfo(TypeOf.Class, create:() => PlaceOwnerEmailGetRequest()), });