Class: Google::Apis::GmailV1::ModifyThreadRequest

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ModifyThreadRequest

Returns a new instance of ModifyThreadRequest.



1161
1162
1163
# File 'generated/google/apis/gmail_v1/classes.rb', line 1161

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#add_label_idsArray<String>

A list of IDs of labels to add to this thread. Corresponds to the JSON property addLabelIds

Returns:

  • (Array<String>)


1154
1155
1156
# File 'generated/google/apis/gmail_v1/classes.rb', line 1154

def add_label_ids
  @add_label_ids
end

#remove_label_idsArray<String>

A list of IDs of labels to remove from this thread. Corresponds to the JSON property removeLabelIds

Returns:

  • (Array<String>)


1159
1160
1161
# File 'generated/google/apis/gmail_v1/classes.rb', line 1159

def remove_label_ids
  @remove_label_ids
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1166
1167
1168
1169
# File 'generated/google/apis/gmail_v1/classes.rb', line 1166

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