ImportHumanUserRequest_RecoveryCode constructor
Implementation
factory ImportHumanUserRequest_RecoveryCode({
$core.String? raw,
$core.String? hash,
}) {
final result = create();
if (raw != null) result.raw = raw;
if (hash != null) result.hash = hash;
return result;
}