Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3PageInfo
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3PageInfo
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dialogflow_v3/classes.rb,
generated/google/apis/dialogflow_v3/representations.rb,
generated/google/apis/dialogflow_v3/representations.rb
Overview
Represents page information communicated to and from the webhook.
Instance Attribute Summary collapse
-
#current_page ⇒ String
Always present for WebhookRequest.
-
#form_info ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3PageInfoFormInfo
Represents form information.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3PageInfo
constructor
A new instance of GoogleCloudDialogflowCxV3PageInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3PageInfo
Returns a new instance of GoogleCloudDialogflowCxV3PageInfo.
2627 2628 2629 |
# File 'generated/google/apis/dialogflow_v3/classes.rb', line 2627 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
2620 2621 2622 |
# File 'generated/google/apis/dialogflow_v3/classes.rb', line 2620 def current_page @current_page end |
#form_info ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3PageInfoFormInfo
Represents form information.
Corresponds to the JSON property formInfo
2625 2626 2627 |
# File 'generated/google/apis/dialogflow_v3/classes.rb', line 2625 def form_info @form_info end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2632 2633 2634 2635 |
# File 'generated/google/apis/dialogflow_v3/classes.rb', line 2632 def update!(**args) @current_page = args[:current_page] if args.key?(:current_page) @form_info = args[:form_info] if args.key?(:form_info) end |