Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1PageInfo
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1PageInfo
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v2beta1/classes.rb,
lib/google/apis/dialogflow_v2beta1/representations.rb,
lib/google/apis/dialogflow_v2beta1/representations.rb
Overview
Represents page information communicated to and from the webhook.
Instance Attribute Summary collapse
-
#current_page ⇒ String
Always present for WebhookRequest.
-
#display_name ⇒ String
Always present for WebhookRequest.
-
#form_info ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1PageInfoFormInfo
Represents form information.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1PageInfo
constructor
A new instance of GoogleCloudDialogflowCxV3beta1PageInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1PageInfo
Returns a new instance of GoogleCloudDialogflowCxV3beta1PageInfo.
6113 6114 6115 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 6113 def initialize(**args) update!(**args) end |
Instance Attribute Details
#current_page ⇒ String
Always present for WebhookRequest. Ignored for WebhookResponse. The unique
identifier of the current page. Format: projects//locations//agents//flows//
pages/
.
Corresponds to the JSON property currentPage
6100 6101 6102 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 6100 def current_page @current_page end |
#display_name ⇒ String
Always present for WebhookRequest. Ignored for WebhookResponse. The display
name of the current page.
Corresponds to the JSON property displayName
6106 6107 6108 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 6106 def display_name @display_name end |
#form_info ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1PageInfoFormInfo
Represents form information.
Corresponds to the JSON property formInfo
6111 6112 6113 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 6111 def form_info @form_info end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6118 6119 6120 6121 6122 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 6118 def update!(**args) @current_page = args[:current_page] if args.key?(:current_page) @display_name = args[:display_name] if args.key?(:display_name) @form_info = args[:form_info] if args.key?(:form_info) end |