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