Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1PhraseMatchRule
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1PhraseMatchRule
 
 
- Includes:
 - Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/contactcenterinsights_v1/classes.rb,
lib/google/apis/contactcenterinsights_v1/representations.rb,
lib/google/apis/contactcenterinsights_v1/representations.rb 
Overview
The data for a phrase match rule.
Instance Attribute Summary collapse
- 
  
    
      #config  ⇒ Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1PhraseMatchRuleConfig 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Configuration information of a phrase match rule.
 - 
  
    
      #negated  ⇒ Boolean 
    
    
      (also: #negated?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Specifies whether the phrase must be missing from the transcript segment or present in the transcript segment.
 - 
  
    
      #query  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Required.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudContactcenterinsightsV1PhraseMatchRule 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GoogleCloudContactcenterinsightsV1PhraseMatchRule.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1PhraseMatchRule
Returns a new instance of GoogleCloudContactcenterinsightsV1PhraseMatchRule.
      3103 3104 3105  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 3103 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#config ⇒ Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1PhraseMatchRuleConfig
Configuration information of a phrase match rule.
Corresponds to the JSON property config
      3089 3090 3091  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 3089 def config @config end  | 
  
#negated ⇒ Boolean Also known as: negated?
Specifies whether the phrase must be missing from the transcript segment or
present in the transcript segment.
Corresponds to the JSON property negated
      3095 3096 3097  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 3095 def negated @negated end  | 
  
#query ⇒ String
Required. The phrase to be matched.
Corresponds to the JSON property query
      3101 3102 3103  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 3101 def query @query end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      3108 3109 3110 3111 3112  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 3108 def update!(**args) @config = args[:config] if args.key?(:config) @negated = args[:negated] if args.key?(:negated) @query = args[:query] if args.key?(:query) end  |