SendHumanResetPasswordNotificationRequest constructor
SendHumanResetPasswordNotificationRequest({
- String? userId,
- SendHumanResetPasswordNotificationRequest_Type? type,
Implementation
factory SendHumanResetPasswordNotificationRequest({
$core.String? userId,
SendHumanResetPasswordNotificationRequest_Type? type,
}) {
final _result = create();
if (userId != null) {
_result.userId = userId;
}
if (type != null) {
_result.type = type;
}
return _result;
}