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



219
220
221
# File 'generated/google/apis/drive_v2/classes.rb', line 219

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



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

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)


217
218
219
# File 'generated/google/apis/drive_v2/classes.rb', line 217

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



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

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