Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1PhraseMatchRuleGroup
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1PhraseMatchRuleGroup
 
 
- 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
A message representing a rule in the phrase matcher.
Instance Attribute Summary collapse
- 
  
    
      #phrase_match_rules  ⇒ Array<Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1PhraseMatchRule> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A list of phrase match rules that are included in this group.
 - 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Required.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudContactcenterinsightsV1PhraseMatchRuleGroup 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GoogleCloudContactcenterinsightsV1PhraseMatchRuleGroup.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1PhraseMatchRuleGroup
Returns a new instance of GoogleCloudContactcenterinsightsV1PhraseMatchRuleGroup.
      3148 3149 3150  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 3148 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#phrase_match_rules ⇒ Array<Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1PhraseMatchRule>
A list of phrase match rules that are included in this group.
Corresponds to the JSON property phraseMatchRules
      3141 3142 3143  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 3141 def phrase_match_rules @phrase_match_rules end  | 
  
#type ⇒ String
Required. The type of this phrase match rule group.
Corresponds to the JSON property type
      3146 3147 3148  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 3146 def type @type end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      3153 3154 3155 3156  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 3153 def update!(**args) @phrase_match_rules = args[:phrase_match_rules] if args.key?(:phrase_match_rules) @type = args[:type] if args.key?(:type) end  |