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

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) ⇒ HistoryLabelRemoved

Returns a new instance of HistoryLabelRemoved.



598
599
600
# File 'lib/google/apis/gmail_v1/classes.rb', line 598

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>)


591
592
593
# File 'lib/google/apis/gmail_v1/classes.rb', line 591

def label_ids
  @label_ids
end

#messageGoogle::Apis::GmailV1::Message

An email message. Corresponds to the JSON property message



596
597
598
# File 'lib/google/apis/gmail_v1/classes.rb', line 596

def message
  @message
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



603
604
605
606
# File 'lib/google/apis/gmail_v1/classes.rb', line 603

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