Class: Google::Apis::GmailV1::ModifyMessageRequest
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::GmailV1::ModifyMessageRequest
 
- 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
- 
  
    
      #add_label_ids  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A list of IDs of labels to add to this message. 
- 
  
    
      #remove_label_ids  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A list IDs of labels to remove from this message. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ModifyMessageRequest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ModifyMessageRequest. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ModifyMessageRequest
Returns a new instance of ModifyMessageRequest
| 1042 1043 1044 | # File 'generated/google/apis/gmail_v1/classes.rb', line 1042 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#add_label_ids ⇒ Array<String>
A list of IDs of labels to add to this message.
Corresponds to the JSON property addLabelIds
| 1035 1036 1037 | # File 'generated/google/apis/gmail_v1/classes.rb', line 1035 def add_label_ids @add_label_ids end | 
#remove_label_ids ⇒ Array<String>
A list IDs of labels to remove from this message.
Corresponds to the JSON property removeLabelIds
| 1040 1041 1042 | # File 'generated/google/apis/gmail_v1/classes.rb', line 1040 def remove_label_ids @remove_label_ids end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1047 1048 1049 1050 | # File 'generated/google/apis/gmail_v1/classes.rb', line 1047 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 |