Class: Google::Apis::ChatV1::ActionParameter
- Inherits:
-
Object
- Object
- Google::Apis::ChatV1::ActionParameter
- Defined in:
- generated/google/apis/chat_v1/classes.rb,
generated/google/apis/chat_v1/representations.rb,
generated/google/apis/chat_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 1 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
-
#key ⇒ String
The name of the parameter for the action script.
-
#value ⇒ String
The value of the parameter.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ActionParameter
constructor
A new instance of ActionParameter.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ ActionParameter
Returns a new instance of ActionParameter
42 43 44 |
# File 'generated/google/apis/chat_v1/classes.rb', line 42 def initialize(**args) update!(**args) end |
Instance Attribute Details
#key ⇒ String
The name of the parameter for the action script.
Corresponds to the JSON property key
35 36 37 |
# File 'generated/google/apis/chat_v1/classes.rb', line 35 def key @key end |
#value ⇒ String
The value of the parameter.
Corresponds to the JSON property value
40 41 42 |
# File 'generated/google/apis/chat_v1/classes.rb', line 40 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
47 48 49 50 |
# File 'generated/google/apis/chat_v1/classes.rb', line 47 def update!(**args) @key = args[:key] if args.key?(:key) @value = args[:value] if args.key?(:value) end |