class Google::Apis::StorageV1::ObjectAccessControl::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 1761 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 1766 def update!(**args) @project_number = args[:project_number] if args.key?(:project_number) @team = args[:team] if args.key?(:team) end