Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1WebhookResponse
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1WebhookResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v3/classes.rb,
lib/google/apis/dialogflow_v3/representations.rb,
lib/google/apis/dialogflow_v3/representations.rb
Instance Attribute Summary collapse
-
#fulfillment_response ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1WebhookResponseFulfillmentResponse
Corresponds to the JSON property
fulfillmentResponse. -
#page_info ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1PageInfo
Corresponds to the JSON property
pageInfo. -
#payload ⇒ Hash<String,Object>
Corresponds to the JSON property
payload. -
#session_info ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1SessionInfo
Corresponds to the JSON property
sessionInfo. -
#target_flow ⇒ String
Corresponds to the JSON property
targetFlow. -
#target_page ⇒ String
Corresponds to the JSON property
targetPage.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1WebhookResponse
constructor
A new instance of GoogleCloudDialogflowCxV3beta1WebhookResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1WebhookResponse
Returns a new instance of GoogleCloudDialogflowCxV3beta1WebhookResponse.
13021 13022 13023 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 13021 def initialize(**args) update!(**args) end |
Instance Attribute Details
#fulfillment_response ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1WebhookResponseFulfillmentResponse
Corresponds to the JSON property fulfillmentResponse
12994 12995 12996 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 12994 def fulfillment_response @fulfillment_response end |
#page_info ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1PageInfo
Corresponds to the JSON property pageInfo
12999 13000 13001 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 12999 def page_info @page_info end |
#payload ⇒ Hash<String,Object>
Corresponds to the JSON property payload
13004 13005 13006 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 13004 def payload @payload end |
#session_info ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1SessionInfo
Corresponds to the JSON property sessionInfo
13009 13010 13011 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 13009 def session_info @session_info end |
#target_flow ⇒ String
Corresponds to the JSON property targetFlow
13014 13015 13016 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 13014 def target_flow @target_flow end |
#target_page ⇒ String
Corresponds to the JSON property targetPage
13019 13020 13021 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 13019 def target_page @target_page end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
13026 13027 13028 13029 13030 13031 13032 13033 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 13026 def update!(**args) @fulfillment_response = args[:fulfillment_response] if args.key?(:fulfillment_response) @page_info = args[:page_info] if args.key?(:page_info) @payload = args[:payload] if args.key?(:payload) @session_info = args[:session_info] if args.key?(:session_info) @target_flow = args[:target_flow] if args.key?(:target_flow) @target_page = args[:target_page] if args.key?(:target_page) end |