Class: Google::Apis::GmailV1::ModifyMessageRequest

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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ModifyMessageRequest

Returns a new instance of ModifyMessageRequest.



1375
1376
1377
# File 'lib/google/apis/gmail_v1/classes.rb', line 1375

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

Instance Attribute Details

#add_label_idsArray<String>

A list of IDs of labels to add to this message. You can add up to 100 labels with each update. Corresponds to the JSON property addLabelIds

Returns:

  • (Array<String>)


1367
1368
1369
# File 'lib/google/apis/gmail_v1/classes.rb', line 1367

def add_label_ids
  @add_label_ids
end

#remove_label_idsArray<String>

A list IDs of labels to remove from this message. You can remove up to 100 labels with each update. Corresponds to the JSON property removeLabelIds

Returns:

  • (Array<String>)


1373
1374
1375
# File 'lib/google/apis/gmail_v1/classes.rb', line 1373

def remove_label_ids
  @remove_label_ids
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1380
1381
1382
1383
# File 'lib/google/apis/gmail_v1/classes.rb', line 1380

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