Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3PageInfo

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3PageInfo

Returns a new instance of GoogleCloudDialogflowCxV3PageInfo.



1260
1261
1262
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 1260

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#current_pageString

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

Returns:

  • (String)


1253
1254
1255
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 1253

def current_page
  @current_page
end

#form_infoGoogle::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3PageInfoFormInfo

Represents form information. Corresponds to the JSON property formInfo



1258
1259
1260
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 1258

def form_info
  @form_info
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1265
1266
1267
1268
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 1265

def update!(**args)
  @current_page = args[:current_page] if args.key?(:current_page)
  @form_info = args[:form_info] if args.key?(:form_info)
end