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.



233
234
235
# File 'generated/google/apis/drive_v2/classes.rb', line 233

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



226
227
228
# File 'generated/google/apis/drive_v2/classes.rb', line 226

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)


231
232
233
# File 'generated/google/apis/drive_v2/classes.rb', line 231

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



238
239
240
241
# File 'generated/google/apis/drive_v2/classes.rb', line 238

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