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;
}