class Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1SmartReplyData
Agent Assist Smart Reply data.
Attributes
confidence_score[RW]
The system's confidence score that this reply is a good match for this conversation, ranging from 0.0 (completely uncertain) to 1.0 (completely certain). Corresponds to the JSON property `confidenceScore` @return [Float]
metadata[RW]
Map that contains metadata about the Smart Reply and the document from which it originates. Corresponds to the JSON property `metadata` @return [Hash<String,String>]
query_record[RW]
Name of the query record. Format: projects/`project`/locations/`location`/ queryRecords/`query_record` Corresponds to the JSON property `queryRecord` @return [String]
reply[RW]
The content of the reply. Corresponds to the JSON property `reply` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/contactcenterinsights_v1/classes.rb, line 2285 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 2290 def update!(**args) @confidence_score = args[:confidence_score] if args.key?(:confidence_score) @metadata = args[:metadata] if args.key?(:metadata) @query_record = args[:query_record] if args.key?(:query_record) @reply = args[:reply] if args.key?(:reply) end