Class: Google::Apis::ChatV1::ActionResponse
- Inherits:
-
Object
- Object
- Google::Apis::ChatV1::ActionResponse
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/chat_v1/classes.rb,
lib/google/apis/chat_v1/representations.rb,
lib/google/apis/chat_v1/representations.rb
Overview
Parameters that a Chat app can use to configure how its response is posted.
Instance Attribute Summary collapse
-
#dialog_action ⇒ Google::Apis::ChatV1::DialogAction
Contains a dialog and request status code.
-
#type ⇒ String
Input only.
-
#updated_widget ⇒ Google::Apis::ChatV1::UpdatedWidget
The response of the updated widget.
-
#url ⇒ String
Input only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ActionResponse
constructor
A new instance of ActionResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ActionResponse
Returns a new instance of ActionResponse.
139 140 141 |
# File 'lib/google/apis/chat_v1/classes.rb', line 139 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dialog_action ⇒ Google::Apis::ChatV1::DialogAction
Contains a dialog and
request status code.
Corresponds to the JSON property dialogAction
120 121 122 |
# File 'lib/google/apis/chat_v1/classes.rb', line 120 def dialog_action @dialog_action end |
#type ⇒ String
Input only. The type of Chat app response.
Corresponds to the JSON property type
125 126 127 |
# File 'lib/google/apis/chat_v1/classes.rb', line 125 def type @type end |
#updated_widget ⇒ Google::Apis::ChatV1::UpdatedWidget
The response of the updated widget. Used to provide autocomplete options for a
widget.
Corresponds to the JSON property updatedWidget
131 132 133 |
# File 'lib/google/apis/chat_v1/classes.rb', line 131 def @updated_widget end |
#url ⇒ String
Input only. URL for users to authenticate or configure. (Only for
REQUEST_CONFIG
response types.)
Corresponds to the JSON property url
137 138 139 |
# File 'lib/google/apis/chat_v1/classes.rb', line 137 def url @url end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
144 145 146 147 148 149 |
# File 'lib/google/apis/chat_v1/classes.rb', line 144 def update!(**args) @dialog_action = args[:dialog_action] if args.key?(:dialog_action) @type = args[:type] if args.key?(:type) @updated_widget = args[:updated_widget] if args.key?(:updated_widget) @url = args[:url] if args.key?(:url) end |