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.
3156 3157 3158 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 3156 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
3149 3150 3151 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 3149 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
3154 3155 3156 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 3154 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3161 3162 3163 3164 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 3161 def update!(**args) @phrase_match_rules = args[:phrase_match_rules] if args.key?(:phrase_match_rules) @type = args[:type] if args.key?(:type) end |