class Google::Apis::StorageV1::BucketAccessControl::ProjectTeam

The project team associated with the entity, if any.

Attributes

project_number[RW]

The project number. Corresponds to the JSON property `projectNumber` @return [String]

team[RW]

The team. Corresponds to the JSON property `team` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/storage_v1/classes.rb, line 842
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/storage_v1/classes.rb, line 847
def update!(**args)
  @project_number = args[:project_number] if args.key?(:project_number)
  @team = args[:team] if args.key?(:team)
end