Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1PageInfo

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dialogflow_v3/classes.rb,
lib/google/apis/dialogflow_v3/representations.rb,
lib/google/apis/dialogflow_v3/representations.rb

Overview

Represents page information communicated to and from the webhook.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1PageInfo

Returns a new instance of GoogleCloudDialogflowCxV3beta1PageInfo.



10455
10456
10457
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 10455

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)


10442
10443
10444
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 10442

def current_page
  @current_page
end

#display_nameString

Always present for WebhookRequest. Ignored for WebhookResponse. The display name of the current page. Corresponds to the JSON property displayName

Returns:

  • (String)


10448
10449
10450
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 10448

def display_name
  @display_name
end

#form_infoGoogle::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1PageInfoFormInfo

Represents form information. Corresponds to the JSON property formInfo



10453
10454
10455
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 10453

def form_info
  @form_info
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



10460
10461
10462
10463
10464
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 10460

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