UpdateProjectGrantRequest constructor
Implementation
factory UpdateProjectGrantRequest({
$core.String? projectId,
$core.String? grantId,
$core.Iterable<$core.String>? roleKeys,
}) {
final $result = create();
if (projectId != null) {
$result.projectId = projectId;
}
if (grantId != null) {
$result.grantId = grantId;
}
if (roleKeys != null) {
$result.roleKeys.addAll(roleKeys);
}
return $result;
}