class Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1PageInfo

Represents page information communicated to and from the webhook.

Attributes

current_page[RW]

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` @return [String]

form_info[RW]

Represents form information. Corresponds to the JSON property `formInfo` @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1PageInfoFormInfo]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dialogflow_v2beta1/classes.rb, line 3909
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/dialogflow_v2beta1/classes.rb, line 3914
def update!(**args)
  @current_page = args[:current_page] if args.key?(:current_page)
  @form_info = args[:form_info] if args.key?(:form_info)
end