From ab6b36c12c89ce84b7414956181647feb0980f7b Mon Sep 17 00:00:00 2001 From: Frederick Holland Date: Tue, 17 Jun 2025 11:16:25 +1000 Subject: [PATCH] Added AnalyticsConversationWithAttributesQuery struct --- models/raw.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/models/raw.go b/models/raw.go index ba1692d..a7d350c 100644 --- a/models/raw.go +++ b/models/raw.go @@ -1,5 +1,10 @@ package models +type AnalyticsConversationWithAttributesQuery struct { + Conversations []AnalyticsConversationWithAttributes `json:"conversations"` + Cursor *string `json:"cursor"` +} + type AnalyticsConversationWithAttributes struct { ConversationEnd string `json:"conversationEnd"` ConversationId string `json:"conversationId"`