Class: Google::Apis::DriveV3::Permission::TeamDrivePermissionDetail
- Inherits:
-
Object
- Object
- Google::Apis::DriveV3::Permission::TeamDrivePermissionDetail
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/drive_v3/classes.rb,
lib/google/apis/drive_v3/representations.rb,
lib/google/apis/drive_v3/representations.rb
Instance Attribute Summary collapse
-
#inherited ⇒ Boolean
(also: #inherited?)
Deprecated - use permissionDetails/inherited instead.
-
#inherited_from ⇒ String
Deprecated - use permissionDetails/inheritedFrom instead.
-
#role ⇒ String
Deprecated - use permissionDetails/role instead.
-
#team_drive_permission_type ⇒ String
Deprecated - use permissionDetails/permissionType instead.
Instance Method Summary collapse
-
#initialize(**args) ⇒ TeamDrivePermissionDetail
constructor
A new instance of TeamDrivePermissionDetail.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ TeamDrivePermissionDetail
Returns a new instance of TeamDrivePermissionDetail.
2701 2702 2703 |
# File 'lib/google/apis/drive_v3/classes.rb', line 2701 def initialize(**args) update!(**args) end |
Instance Attribute Details
#inherited ⇒ Boolean Also known as: inherited?
Deprecated - use permissionDetails/inherited instead.
Corresponds to the JSON property inherited
2683 2684 2685 |
# File 'lib/google/apis/drive_v3/classes.rb', line 2683 def inherited @inherited end |
#inherited_from ⇒ String
Deprecated - use permissionDetails/inheritedFrom instead.
Corresponds to the JSON property inheritedFrom
2689 2690 2691 |
# File 'lib/google/apis/drive_v3/classes.rb', line 2689 def inherited_from @inherited_from end |
#role ⇒ String
Deprecated - use permissionDetails/role instead.
Corresponds to the JSON property role
2694 2695 2696 |
# File 'lib/google/apis/drive_v3/classes.rb', line 2694 def role @role end |
#team_drive_permission_type ⇒ String
Deprecated - use permissionDetails/permissionType instead.
Corresponds to the JSON property teamDrivePermissionType
2699 2700 2701 |
# File 'lib/google/apis/drive_v3/classes.rb', line 2699 def @team_drive_permission_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2706 2707 2708 2709 2710 2711 |
# File 'lib/google/apis/drive_v3/classes.rb', line 2706 def update!(**args) @inherited = args[:inherited] if args.key?(:inherited) @inherited_from = args[:inherited_from] if args.key?(:inherited_from) @role = args[:role] if args.key?(:role) @team_drive_permission_type = args[:team_drive_permission_type] if args.key?(:team_drive_permission_type) end |