Class: Google::Apis::CloudsearchV1::GoogleChatV1WidgetMarkupFormActionActionParameter

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/cloudsearch_v1/classes.rb,
lib/google/apis/cloudsearch_v1/representations.rb,
lib/google/apis/cloudsearch_v1/representations.rb

Overview

List of string parameters to supply when the action method is invoked. For example, consider three snooze buttons: snooze now, snooze one day, snooze next week. You might use action method = snooze(), passing the snooze type and snooze time in the list of string parameters.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleChatV1WidgetMarkupFormActionActionParameter

Returns a new instance of GoogleChatV1WidgetMarkupFormActionActionParameter.



10334
10335
10336
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 10334

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

Instance Attribute Details

#keyString

The name of the parameter for the action script. Corresponds to the JSON property key

Returns:

  • (String)


10327
10328
10329
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 10327

def key
  @key
end

#valueString

The value of the parameter. Corresponds to the JSON property value

Returns:

  • (String)


10332
10333
10334
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 10332

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



10339
10340
10341
10342
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 10339

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