Class: Google::Apis::DrivelabelsV2::GoogleAppsDriveLabelsV2LabelAppliedCapabilities
- Inherits:
-
Object
- Object
- Google::Apis::DrivelabelsV2::GoogleAppsDriveLabelsV2LabelAppliedCapabilities
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/drivelabels_v2/classes.rb,
lib/google/apis/drivelabels_v2/representations.rb,
lib/google/apis/drivelabels_v2/representations.rb
Overview
The capabilities a user has on this label's applied metadata.
Instance Attribute Summary collapse
-
#can_apply ⇒ Boolean
(also: #can_apply?)
Whether the user can apply this label to items.
-
#can_read ⇒ Boolean
(also: #can_read?)
Whether the user can read applied metadata related to this label.
-
#can_remove ⇒ Boolean
(also: #can_remove?)
Whether the user can remove this label from items.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleAppsDriveLabelsV2LabelAppliedCapabilities
constructor
A new instance of GoogleAppsDriveLabelsV2LabelAppliedCapabilities.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleAppsDriveLabelsV2LabelAppliedCapabilities
Returns a new instance of GoogleAppsDriveLabelsV2LabelAppliedCapabilities.
1199 1200 1201 |
# File 'lib/google/apis/drivelabels_v2/classes.rb', line 1199 def initialize(**args) update!(**args) end |
Instance Attribute Details
#can_apply ⇒ Boolean Also known as: can_apply?
Whether the user can apply this label to items.
Corresponds to the JSON property canApply
1184 1185 1186 |
# File 'lib/google/apis/drivelabels_v2/classes.rb', line 1184 def can_apply @can_apply end |
#can_read ⇒ Boolean Also known as: can_read?
Whether the user can read applied metadata related to this label.
Corresponds to the JSON property canRead
1190 1191 1192 |
# File 'lib/google/apis/drivelabels_v2/classes.rb', line 1190 def can_read @can_read end |
#can_remove ⇒ Boolean Also known as: can_remove?
Whether the user can remove this label from items.
Corresponds to the JSON property canRemove
1196 1197 1198 |
# File 'lib/google/apis/drivelabels_v2/classes.rb', line 1196 def can_remove @can_remove end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1204 1205 1206 1207 1208 |
# File 'lib/google/apis/drivelabels_v2/classes.rb', line 1204 def update!(**args) @can_apply = args[:can_apply] if args.key?(:can_apply) @can_read = args[:can_read] if args.key?(:can_read) @can_remove = args[:can_remove] if args.key?(:can_remove) end |