Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3PageInfo
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3PageInfo
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/dialogflow_v2/classes.rb,
lib/google/apis/dialogflow_v2/representations.rb,
lib/google/apis/dialogflow_v2/representations.rb 
Overview
Represents page information communicated to and from the webhook.
Instance Attribute Summary collapse
- 
  
    
      #current_page  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Always present for WebhookRequest.
 - 
  
    
      #display_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Always present for WebhookRequest.
 - 
  
    
      #form_info  ⇒ Google::Apis::DialogflowV2::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.
      2274 2275 2276  | 
    
      # File 'lib/google/apis/dialogflow_v2/classes.rb', line 2274 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
      2261 2262 2263  | 
    
      # File 'lib/google/apis/dialogflow_v2/classes.rb', line 2261 def current_page @current_page end  | 
  
#display_name ⇒ String
Always present for WebhookRequest. Ignored for WebhookResponse. The display
name of the current page.
Corresponds to the JSON property displayName
      2267 2268 2269  | 
    
      # File 'lib/google/apis/dialogflow_v2/classes.rb', line 2267 def display_name @display_name end  | 
  
#form_info ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3PageInfoFormInfo
Represents form information.
Corresponds to the JSON property formInfo
      2272 2273 2274  | 
    
      # File 'lib/google/apis/dialogflow_v2/classes.rb', line 2272 def form_info @form_info end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      2279 2280 2281 2282 2283  | 
    
      # File 'lib/google/apis/dialogflow_v2/classes.rb', line 2279 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  |