class Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3PageInfo

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::DialogflowV3beta1::GoogleCloudDialogflowCxV3PageInfoFormInfo]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dialogflow_v3beta1/classes.rb, line 1368
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_v3beta1/classes.rb, line 1373
def update!(**args)
  @current_page = args[:current_page] if args.key?(:current_page)
  @form_info = args[:form_info] if args.key?(:form_info)
end