From 69f839267881db0cefda80709568a82e6148c080 Mon Sep 17 00:00:00 2001 From: nlathia Date: Thu, 12 Dec 2024 14:14:43 +0000 Subject: [PATCH] Add LatestHandOffTargetID to conversations --- conversation.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/conversation.go b/conversation.go index 7a409ab..3e67c3c 100644 --- a/conversation.go +++ b/conversation.go @@ -84,4 +84,8 @@ type Conversation struct { // in this conversation. It will be empty if there has been no attempt at // classifying the customer's intent. LatestIntent string `json:"latest_intent,omitempty"` + + // LatestHandOffTarget is the ID of the hand off target that is currently + // mapped to the latest intent. + LatestHandOffTargetID string `json:"latest_handoff_target,omitempty"` }