Class: Google::Apis::DriveV2::About::AdditionalRoleInfo
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DriveV2::About::AdditionalRoleInfo
 
- 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
- 
  
    
      #role_sets  ⇒ Array<Google::Apis::DriveV2::About::AdditionalRoleInfo::RoleSet> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The supported additional roles per primary role. 
- 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The content type that this additional role info applies to. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ AdditionalRoleInfo 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of AdditionalRoleInfo. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
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_sets ⇒ Array<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 | 
#type ⇒ String
The content type that this additional role info applies to.
Corresponds to the JSON property type
| 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 |