Class: Google::Apis::DriveV2::About::AdditionalRoleInfo::RoleSet
- Inherits:
-
Object
- Object
- Google::Apis::DriveV2::About::AdditionalRoleInfo::RoleSet
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/drive_v2/classes.rb,
lib/google/apis/drive_v2/representations.rb,
lib/google/apis/drive_v2/representations.rb more...
Instance Attribute Summary collapse
-
#additional_roles ⇒ Array<String>
The supported additional roles with the primary role.
-
#primary_role ⇒ String
A primary permission role.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RoleSet
constructor
A new instance of RoleSet.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ RoleSet
Returns a new instance of RoleSet.
253 254 255 |
# File 'lib/google/apis/drive_v2/classes.rb', line 253 def initialize(**args) update!(**args) end |
Instance Attribute Details
#additional_roles ⇒ Array<String>
The supported additional roles with the primary role.
Corresponds to the JSON property additionalRoles
246 247 248 |
# File 'lib/google/apis/drive_v2/classes.rb', line 246 def additional_roles @additional_roles end |
#primary_role ⇒ String
A primary permission role.
Corresponds to the JSON property primaryRole
251 252 253 |
# File 'lib/google/apis/drive_v2/classes.rb', line 251 def primary_role @primary_role end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
258 259 260 261 |
# File 'lib/google/apis/drive_v2/classes.rb', line 258 def update!(**args) @additional_roles = args[:additional_roles] if args.key?(:additional_roles) @primary_role = args[:primary_role] if args.key?(:primary_role) end |