class Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1DialogflowInteractionData

Dialogflow interaction data.

Attributes

confidence[RW]

The confidence of the match ranging from 0.0 (completely uncertain) to 1.0 ( completely certain). Corresponds to the JSON property `confidence` @return [Float]

dialogflow_intent_id[RW]

The Dialogflow intent resource path. Format: projects/`project`/agent/`agent`/ intents/`intent` Corresponds to the JSON property `dialogflowIntentId` @return [String]

Public Class Methods

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