Class: Google::Apis::DriveV2::About::AdditionalRoleInfo::RoleSet
- Inherits:
-
Object
- Object
- Google::Apis::DriveV2::About::AdditionalRoleInfo::RoleSet
- 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
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.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ RoleSet
Returns a new instance of RoleSet
236 237 238 |
# File 'generated/google/apis/drive_v2/classes.rb', line 236 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
229 230 231 |
# File 'generated/google/apis/drive_v2/classes.rb', line 229 def additional_roles @additional_roles end |
#primary_role ⇒ String
A primary permission role.
Corresponds to the JSON property primaryRole
234 235 236 |
# File 'generated/google/apis/drive_v2/classes.rb', line 234 def primary_role @primary_role end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
241 242 243 244 |
# File 'generated/google/apis/drive_v2/classes.rb', line 241 def update!(**args) @additional_roles = args[:additional_roles] if args.key?(:additional_roles) @primary_role = args[:primary_role] if args.key?(:primary_role) end |