Class: Google::Apis::DriveV2::Permission::PermissionDetail
- Inherits:
-
Object
- Object
- Google::Apis::DriveV2::Permission::PermissionDetail
- 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>
Additional roles for this user.
-
#inherited ⇒ Boolean
(also: #inherited?)
Whether this permission is inherited.
-
#inherited_from ⇒ String
The ID of the item from which this permission is inherited.
-
#permission_type ⇒ String
The permission type for this user.
-
#role ⇒ String
The primary role for this user.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PermissionDetail
constructor
A new instance of PermissionDetail.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ PermissionDetail
Returns a new instance of PermissionDetail
3113 3114 3115 |
# File 'generated/google/apis/drive_v2/classes.rb', line 3113 def initialize(**args) update!(**args) end |
Instance Attribute Details
#additional_roles ⇒ Array<String>
Additional roles for this user. Only commenter is currently possible, though
more may be supported in the future.
Corresponds to the JSON property additionalRoles
3080 3081 3082 |
# File 'generated/google/apis/drive_v2/classes.rb', line 3080 def additional_roles @additional_roles end |
#inherited ⇒ Boolean Also known as: inherited?
Whether this permission is inherited. This field is always populated. This is
an output-only field.
Corresponds to the JSON property inherited
3086 3087 3088 |
# File 'generated/google/apis/drive_v2/classes.rb', line 3086 def inherited @inherited end |
#inherited_from ⇒ String
The ID of the item from which this permission is inherited. This is an output-
only field and is only populated for members of the shared drive.
Corresponds to the JSON property inheritedFrom
3093 3094 3095 |
# File 'generated/google/apis/drive_v2/classes.rb', line 3093 def inherited_from @inherited_from end |
#permission_type ⇒ String
The permission type for this user. While new values may be added in future, the following are currently possible:
- file
- member
Corresponds to the JSON property
permissionType
3101 3102 3103 |
# File 'generated/google/apis/drive_v2/classes.rb', line 3101 def @permission_type end |
#role ⇒ String
The primary role for this user. While new values may be added in the future, the following are currently possible:
- organizer
- fileOrganizer
- writer
- reader
Corresponds to the JSON property
role
3111 3112 3113 |
# File 'generated/google/apis/drive_v2/classes.rb', line 3111 def role @role end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3118 3119 3120 3121 3122 3123 3124 |
# File 'generated/google/apis/drive_v2/classes.rb', line 3118 def update!(**args) @additional_roles = args[:additional_roles] if args.key?(:additional_roles) @inherited = args[:inherited] if args.key?(:inherited) @inherited_from = args[:inherited_from] if args.key?(:inherited_from) @permission_type = args[:permission_type] if args.key?(:permission_type) @role = args[:role] if args.key?(:role) end |