ultracart_api 4.1.12 → 4.1.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/docs/Conversation.md CHANGED
@@ -22,6 +22,8 @@
22
22
  | **sentiment** | [**ConversationSentiment**](ConversationSentiment.md) | | [optional] |
23
23
  | **start_dts** | **String** | Start of the conversation date/time | [optional] |
24
24
  | **unread_messages** | **Boolean** | | [optional] |
25
+ | **virtual_agent** | **Boolean** | True if a virtual agent answered the conversation | [optional] |
26
+ | **virtual_agent_cost** | **Float** | The cost of this conversation performed by the virtual agent | [optional] |
25
27
  | **visible** | **Boolean** | | [optional] |
26
28
 
27
29
  ## Example
@@ -48,6 +50,8 @@ instance = UltracartClient::Conversation.new(
48
50
  sentiment: null,
49
51
  start_dts: null,
50
52
  unread_messages: null,
53
+ virtual_agent: null,
54
+ virtual_agent_cost: null,
51
55
  visible: null
52
56
  )
53
57
  ```