Class: Google::Apis::GmailV1::ModifyThreadRequest
- Inherits:
-
Object
- Object
- Google::Apis::GmailV1::ModifyThreadRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/gmail_v1/classes.rb,
lib/google/apis/gmail_v1/representations.rb,
lib/google/apis/gmail_v1/representations.rb
Instance Attribute Summary collapse
-
#add_label_ids ⇒ Array<String>
A list of IDs of labels to add to this thread.
-
#remove_label_ids ⇒ Array<String>
A list of IDs of labels to remove from this thread.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ModifyThreadRequest
constructor
A new instance of ModifyThreadRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ModifyThreadRequest
Returns a new instance of ModifyThreadRequest.
1427 1428 1429 |
# File 'lib/google/apis/gmail_v1/classes.rb', line 1427 def initialize(**args) update!(**args) end |
Instance Attribute Details
#add_label_ids ⇒ Array<String>
A list of IDs of labels to add to this thread. You can add up to 100 labels
with each update.
Corresponds to the JSON property addLabelIds
1419 1420 1421 |
# File 'lib/google/apis/gmail_v1/classes.rb', line 1419 def add_label_ids @add_label_ids end |
#remove_label_ids ⇒ Array<String>
A list of IDs of labels to remove from this thread. You can remove up to 100
labels with each update.
Corresponds to the JSON property removeLabelIds
1425 1426 1427 |
# File 'lib/google/apis/gmail_v1/classes.rb', line 1425 def remove_label_ids @remove_label_ids end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1432 1433 1434 1435 |
# File 'lib/google/apis/gmail_v1/classes.rb', line 1432 def update!(**args) @add_label_ids = args[:add_label_ids] if args.key?(:add_label_ids) @remove_label_ids = args[:remove_label_ids] if args.key?(:remove_label_ids) end |