VerifyOTPSMSRegistrationRequest constructor
Implementation
factory VerifyOTPSMSRegistrationRequest({
$core.String? userId,
$core.String? otpSmsId,
$core.String? code,
}) {
final $result = create();
if (userId != null) {
$result.userId = userId;
}
if (otpSmsId != null) {
$result.otpSmsId = otpSmsId;
}
if (code != null) {
$result.code = code;
}
return $result;
}