Class: Google::Apis::DriveV2::LabelModification
- Inherits:
-
Object
- Object
- Google::Apis::DriveV2::LabelModification
- 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
Overview
A modification to a label on a file. A LabelModification can be used to apply a label to a file, update an existing label on a file, or remove a label from a file.
Instance Attribute Summary collapse
-
#field_modifications ⇒ Array<Google::Apis::DriveV2::LabelFieldModification>
The list of modifications to this label's fields.
-
#kind ⇒ String
This is always
drive#labelModification
. -
#label_id ⇒ String
The ID of the label to modify.
-
#remove_label ⇒ Boolean
(also: #remove_label?)
If true, the label will be removed from the file.
Instance Method Summary collapse
-
#initialize(**args) ⇒ LabelModification
constructor
A new instance of LabelModification.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ LabelModification
Returns a new instance of LabelModification.
3433 3434 3435 |
# File 'lib/google/apis/drive_v2/classes.rb', line 3433 def initialize(**args) update!(**args) end |
Instance Attribute Details
#field_modifications ⇒ Array<Google::Apis::DriveV2::LabelFieldModification>
The list of modifications to this label's fields.
Corresponds to the JSON property fieldModifications
3415 3416 3417 |
# File 'lib/google/apis/drive_v2/classes.rb', line 3415 def field_modifications @field_modifications end |
#kind ⇒ String
This is always drive#labelModification
.
Corresponds to the JSON property kind
3420 3421 3422 |
# File 'lib/google/apis/drive_v2/classes.rb', line 3420 def kind @kind end |
#label_id ⇒ String
The ID of the label to modify.
Corresponds to the JSON property labelId
3425 3426 3427 |
# File 'lib/google/apis/drive_v2/classes.rb', line 3425 def label_id @label_id end |
#remove_label ⇒ Boolean Also known as: remove_label?
If true, the label will be removed from the file.
Corresponds to the JSON property removeLabel
3430 3431 3432 |
# File 'lib/google/apis/drive_v2/classes.rb', line 3430 def remove_label @remove_label end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3438 3439 3440 3441 3442 3443 |
# File 'lib/google/apis/drive_v2/classes.rb', line 3438 def update!(**args) @field_modifications = args[:field_modifications] if args.key?(:field_modifications) @kind = args[:kind] if args.key?(:kind) @label_id = args[:label_id] if args.key?(:label_id) @remove_label = args[:remove_label] if args.key?(:remove_label) end |