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 phase 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.
2027 2028 2029 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 2027 def initialize(**args) update!(**args) end |
Instance Attribute Details
#phrase_match_rules ⇒ Array<Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1PhraseMatchRule>
A list of phase match rules that are included in this group.
Corresponds to the JSON property phraseMatchRules
2020 2021 2022 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 2020 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
2025 2026 2027 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 2025 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2032 2033 2034 2035 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 2032 def update!(**args) @phrase_match_rules = args[:phrase_match_rules] if args.key?(:phrase_match_rules) @type = args[:type] if args.key?(:type) end |