/* Options: Date: 2024-12-23 11:29:09 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: ProfileUpdateMobilePhoneSendVerificationSmsRequest.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ library ConsumerApi; import 'package:servicestack/servicestack.dart'; class ProfileUpdateMobilePhoneSendVerificationSmsResponse implements IConvertible { String? profileUpdateMobilePhoneRequestToken; String? sentSmsWithRequestId; ProfileUpdateMobilePhoneSendVerificationSmsResponse({this.profileUpdateMobilePhoneRequestToken,this.sentSmsWithRequestId}); ProfileUpdateMobilePhoneSendVerificationSmsResponse.fromJson(Map json) { fromMap(json); } fromMap(Map json) { profileUpdateMobilePhoneRequestToken = json['profileUpdateMobilePhoneRequestToken']; sentSmsWithRequestId = json['sentSmsWithRequestId']; return this; } Map toJson() => { 'profileUpdateMobilePhoneRequestToken': profileUpdateMobilePhoneRequestToken, 'sentSmsWithRequestId': sentSmsWithRequestId }; getTypeName() => "ProfileUpdateMobilePhoneSendVerificationSmsResponse"; TypeContext? context = _ctx; } // @Route("/profile/update-mobile-phone-start", "PUT") class ProfileUpdateMobilePhoneSendVerificationSmsRequest implements IReturn, IPut, IConvertible { String? mobilePhone; ProfileUpdateMobilePhoneSendVerificationSmsRequest({this.mobilePhone}); ProfileUpdateMobilePhoneSendVerificationSmsRequest.fromJson(Map json) { fromMap(json); } fromMap(Map json) { mobilePhone = json['mobilePhone']; return this; } Map toJson() => { 'mobilePhone': mobilePhone }; createResponse() => ProfileUpdateMobilePhoneSendVerificationSmsResponse(); getResponseTypeName() => "ProfileUpdateMobilePhoneSendVerificationSmsResponse"; getTypeName() => "ProfileUpdateMobilePhoneSendVerificationSmsRequest"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'ConsumerApi', types: { 'ProfileUpdateMobilePhoneSendVerificationSmsResponse': TypeInfo(TypeOf.Class, create:() => ProfileUpdateMobilePhoneSendVerificationSmsResponse()), 'ProfileUpdateMobilePhoneSendVerificationSmsRequest': TypeInfo(TypeOf.Class, create:() => ProfileUpdateMobilePhoneSendVerificationSmsRequest()), });