class Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1PhraseMatchRuleGroup
A message representing a rule in the phrase matcher.
Attributes
phrase_match_rules[RW]
A list of phase match rules that are included in this group. Corresponds to the JSON property `phraseMatchRules` @return [Array<Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1PhraseMatchRule>]
type[RW]
Required. The type of this phrase match rule group. Corresponds to the JSON property `type` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/contactcenterinsights_v1/classes.rb, line 1920 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/contactcenterinsights_v1/classes.rb, line 1925 def update!(**args) @phrase_match_rules = args[:phrase_match_rules] if args.key?(:phrase_match_rules) @type = args[:type] if args.key?(:type) end