Class: Google::Apis::GmailV1::ModifyThreadRequest
- Inherits:
-
Object
- Object
- Google::Apis::GmailV1::ModifyThreadRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/gmail_v1/classes.rb,
generated/google/apis/gmail_v1/representations.rb,
generated/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.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ModifyThreadRequest
Returns a new instance of ModifyThreadRequest
1118 1119 1120 |
# File 'generated/google/apis/gmail_v1/classes.rb', line 1118 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.
Corresponds to the JSON property addLabelIds
1111 1112 1113 |
# File 'generated/google/apis/gmail_v1/classes.rb', line 1111 def add_label_ids @add_label_ids end |
#remove_label_ids ⇒ Array<String>
A list of IDs of labels to remove from this thread.
Corresponds to the JSON property removeLabelIds
1116 1117 1118 |
# File 'generated/google/apis/gmail_v1/classes.rb', line 1116 def remove_label_ids @remove_label_ids end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1123 1124 1125 1126 |
# File 'generated/google/apis/gmail_v1/classes.rb', line 1123 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 |