Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Phrase
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Phrase
 
 
- 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
Text input which can be used for prompt or banned phrases.
Instance Attribute Summary collapse
- 
  
    
      #text  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Required.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudDialogflowCxV3Phrase 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GoogleCloudDialogflowCxV3Phrase.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3Phrase
Returns a new instance of GoogleCloudDialogflowCxV3Phrase.
      5793 5794 5795  | 
    
      # File 'lib/google/apis/dialogflow_v3/classes.rb', line 5793 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#text ⇒ String
Required. Text input which can be used for prompt or banned phrases.
Corresponds to the JSON property text
      5791 5792 5793  | 
    
      # File 'lib/google/apis/dialogflow_v3/classes.rb', line 5791 def text @text end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      5798 5799 5800  | 
    
      # File 'lib/google/apis/dialogflow_v3/classes.rb', line 5798 def update!(**args) @text = args[:text] if args.key?(:text) end  |