DeleteProjectGrantRequest constructor

DeleteProjectGrantRequest({
  1. String? projectId,
  2. String? grantedOrganizationId,
})

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