class Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1PhraseMatchData

The data for a matched phrase matcher. Represents information identifying a phrase matcher for a given match.

Attributes

display_name[RW]

The human-readable name of the phrase matcher. Corresponds to the JSON property `displayName` @return [String]

phrase_matcher[RW]

The unique identifier (the resource name) of the phrase matcher. Corresponds to the JSON property `phraseMatcher` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/contactcenterinsights_v1/classes.rb, line 1843
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 1848
def update!(**args)
  @display_name = args[:display_name] if args.key?(:display_name)
  @phrase_matcher = args[:phrase_matcher] if args.key?(:phrase_matcher)
end