class Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1IssueAssignment
Information about the issue.
Attributes
display_name[RW]
Immutable. Display name of the assigned issue. This field is set at time of analyis and immutable since then. Corresponds to the JSON property `displayName` @return [String]
issue[RW]
Resource name of the assigned issue. Corresponds to the JSON property `issue` @return [String]
score[RW]
Score indicating the likelihood of the issue assignment. currently bounded on [ 0,1]. Corresponds to the JSON property `score` @return [Float]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/contactcenterinsights_v1/classes.rb, line 1535 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 1540 def update!(**args) @display_name = args[:display_name] if args.key?(:display_name) @issue = args[:issue] if args.key?(:issue) @score = args[:score] if args.key?(:score) end