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