Class: Google::Apis::DriveV2::About::AdditionalRoleInfo

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/drive_v2/classes.rb,
generated/google/apis/drive_v2/representations.rb,
generated/google/apis/drive_v2/representations.rb

Defined Under Namespace

Classes: RoleSet

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ AdditionalRoleInfo

Returns a new instance of AdditionalRoleInfo.



206
207
208
# File 'generated/google/apis/drive_v2/classes.rb', line 206

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#role_setsArray<Google::Apis::DriveV2::About::AdditionalRoleInfo::RoleSet>

The supported additional roles per primary role. Corresponds to the JSON property roleSets



199
200
201
# File 'generated/google/apis/drive_v2/classes.rb', line 199

def role_sets
  @role_sets
end

#typeString

The content type that this additional role info applies to. Corresponds to the JSON property type

Returns:

  • (String)


204
205
206
# File 'generated/google/apis/drive_v2/classes.rb', line 204

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



211
212
213
214
# File 'generated/google/apis/drive_v2/classes.rb', line 211

def update!(**args)
  @role_sets = args[:role_sets] if args.key?(:role_sets)
  @type = args[:type] if args.key?(:type)
end