Class: Google::Apis::GmailV1::FilterAction

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

Overview

A set of actions to perform on a message.

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

Returns a new instance of FilterAction.



153
154
155
# File 'generated/google/apis/gmail_v1/classes.rb', line 153

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

Instance Attribute Details

#add_label_idsArray<String>

List of labels to add to the message. Corresponds to the JSON property addLabelIds

Returns:

  • (Array<String>)


141
142
143
# File 'generated/google/apis/gmail_v1/classes.rb', line 141

def add_label_ids
  @add_label_ids
end

#forwardString

Email address that the message should be forwarded to. Corresponds to the JSON property forward

Returns:

  • (String)


146
147
148
# File 'generated/google/apis/gmail_v1/classes.rb', line 146

def forward
  @forward
end

#remove_label_idsArray<String>

List of labels to remove from the message. Corresponds to the JSON property removeLabelIds

Returns:

  • (Array<String>)


151
152
153
# File 'generated/google/apis/gmail_v1/classes.rb', line 151

def remove_label_ids
  @remove_label_ids
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



158
159
160
161
162
# File 'generated/google/apis/gmail_v1/classes.rb', line 158

def update!(**args)
  @add_label_ids = args[:add_label_ids] if args.key?(:add_label_ids)
  @forward = args[:forward] if args.key?(:forward)
  @remove_label_ids = args[:remove_label_ids] if args.key?(:remove_label_ids)
end