DeleteProjectGrantRequest constructor
Implementation
factory DeleteProjectGrantRequest({
$core.String? projectId,
$core.String? grantedOrganizationId,
}) {
final result = create();
if (projectId != null) result.projectId = projectId;
if (grantedOrganizationId != null)
result.grantedOrganizationId = grantedOrganizationId;
return result;
}