/* Options: Date: 2024-12-23 11:57:28 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://consumer-api.brovs.com //GlobalNamespace: ConsumerApi //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ProfileDeletePhotoRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ library ConsumerApi; import 'package:servicestack/servicestack.dart'; class ProfileDeletePhotoResponse implements IConvertible { int? deleteCount; ProfileDeletePhotoResponse({this.deleteCount}); ProfileDeletePhotoResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { deleteCount = json['deleteCount']; return this; } Map toJson() => { 'deleteCount': deleteCount }; getTypeName() => "ProfileDeletePhotoResponse"; TypeContext? context = _ctx; } // @Route("/profile/delete-photo", "PUT") class ProfileDeletePhotoRequest implements IReturn, IPut, IConvertible { ProfileDeletePhotoRequest(); ProfileDeletePhotoRequest.fromJson(Map json) : super(); fromMap(Map json) { return this; } Map toJson() => {}; createResponse() => ProfileDeletePhotoResponse(); getResponseTypeName() => "ProfileDeletePhotoResponse"; getTypeName() => "ProfileDeletePhotoRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'ConsumerApi', types: { 'ProfileDeletePhotoResponse': TypeInfo(TypeOf.Class, create:() => ProfileDeletePhotoResponse()), 'ProfileDeletePhotoRequest': TypeInfo(TypeOf.Class, create:() => ProfileDeletePhotoRequest()), });