Class: Google::Apis::GmailV1::HistoryLabelAdded
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::GmailV1::HistoryLabelAdded
 
- 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
- 
  
    
      #label_ids  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Label IDs added to the message. 
- 
  
    
      #message  ⇒ Google::Apis::GmailV1::Message 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    An email message. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ HistoryLabelAdded 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of HistoryLabelAdded. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ HistoryLabelAdded
Returns a new instance of HistoryLabelAdded
| 366 367 368 | # File 'generated/google/apis/gmail_v1/classes.rb', line 366 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#label_ids ⇒ Array<String>
Label IDs added to the message.
Corresponds to the JSON property labelIds
| 359 360 361 | # File 'generated/google/apis/gmail_v1/classes.rb', line 359 def label_ids @label_ids end | 
#message ⇒ Google::Apis::GmailV1::Message
An email message.
Corresponds to the JSON property message
| 364 365 366 | # File 'generated/google/apis/gmail_v1/classes.rb', line 364 def @message end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 371 372 373 374 | # File 'generated/google/apis/gmail_v1/classes.rb', line 371 def update!(**args) @label_ids = args[:label_ids] if args.key?(:label_ids) @message = args[:message] if args.key?(:message) end |