Class: Google::Apis::GmailV1::HistoryLabelRemoved

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

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ HistoryLabelRemoved

Returns a new instance of HistoryLabelRemoved.



360
361
362
# File 'generated/google/apis/gmail_v1/classes.rb', line 360

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

Instance Attribute Details

#label_idsArray<String>

Label IDs removed from the message. Corresponds to the JSON property labelIds

Returns:

  • (Array<String>)


353
354
355
# File 'generated/google/apis/gmail_v1/classes.rb', line 353

def label_ids
  @label_ids
end

#messageGoogle::Apis::GmailV1::Message

An email message. Corresponds to the JSON property message



358
359
360
# File 'generated/google/apis/gmail_v1/classes.rb', line 358

def message
  @message
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



365
366
367
368
# File 'generated/google/apis/gmail_v1/classes.rb', line 365

def update!(**args)
  @label_ids = args[:label_ids] if args.key?(:label_ids)
  @message = args[:message] if args.key?(:message)
end