ultracart_api 4.0.95.rc → 4.0.97.rc

Sign up to get free protection for your applications and to get access to all the features.
Files changed (31) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +20 -4
  3. data/docs/ConversationApi.md +439 -5
  4. data/docs/ConversationCannedMessage.md +2 -2
  5. data/docs/ConversationDepartment.md +26 -0
  6. data/docs/ConversationDepartmentResponse.md +26 -0
  7. data/docs/ConversationDepartmentsResponse.md +26 -0
  8. data/docs/ConversationEngagement.md +30 -0
  9. data/docs/ConversationEngagementResponse.md +26 -0
  10. data/docs/ConversationEngagementsResponse.md +26 -0
  11. data/docs/ConversationJoinRequest.md +18 -0
  12. data/docs/ConversationMessage.md +4 -0
  13. data/docs/ConversationMessageTranslation.md +20 -0
  14. data/docs/ConversationParticipant.md +6 -0
  15. data/docs/ConversationWebchatQueueStatusQueueEntry.md +2 -0
  16. data/lib/ultracart_api/api/conversation_api.rb +412 -1
  17. data/lib/ultracart_api/models/conversation_canned_message.rb +8 -8
  18. data/lib/ultracart_api/models/conversation_department.rb +255 -0
  19. data/lib/ultracart_api/models/conversation_department_response.rb +256 -0
  20. data/lib/ultracart_api/models/conversation_departments_response.rb +258 -0
  21. data/lib/ultracart_api/models/conversation_engagement.rb +275 -0
  22. data/lib/ultracart_api/models/conversation_engagement_response.rb +256 -0
  23. data/lib/ultracart_api/models/conversation_engagements_response.rb +258 -0
  24. data/lib/ultracart_api/models/conversation_join_request.rb +219 -0
  25. data/lib/ultracart_api/models/conversation_message.rb +21 -1
  26. data/lib/ultracart_api/models/conversation_message_translation.rb +228 -0
  27. data/lib/ultracart_api/models/conversation_participant.rb +28 -1
  28. data/lib/ultracart_api/models/conversation_webchat_queue_status_queue_entry.rb +10 -1
  29. data/lib/ultracart_api/version.rb +1 -1
  30. data/lib/ultracart_api.rb +8 -0
  31. metadata +18 -2
@@ -0,0 +1,26 @@
1
+ # UltracartClient::ConversationDepartmentResponse
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **conversation_department** | [**ConversationDepartment**](ConversationDepartment.md) | | [optional] |
8
+ | **error** | [**Error**](Error.md) | | [optional] |
9
+ | **metadata** | [**ResponseMetadata**](ResponseMetadata.md) | | [optional] |
10
+ | **success** | **Boolean** | Indicates if API call was successful | [optional] |
11
+ | **warning** | [**Warning**](Warning.md) | | [optional] |
12
+
13
+ ## Example
14
+
15
+ ```ruby
16
+ require 'ultracart_api'
17
+
18
+ instance = UltracartClient::ConversationDepartmentResponse.new(
19
+ conversation_department: null,
20
+ error: null,
21
+ metadata: null,
22
+ success: null,
23
+ warning: null
24
+ )
25
+ ```
26
+
@@ -0,0 +1,26 @@
1
+ # UltracartClient::ConversationDepartmentsResponse
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **conversation_departments** | [**Array<ConversationDepartment>**](ConversationDepartment.md) | | [optional] |
8
+ | **error** | [**Error**](Error.md) | | [optional] |
9
+ | **metadata** | [**ResponseMetadata**](ResponseMetadata.md) | | [optional] |
10
+ | **success** | **Boolean** | Indicates if API call was successful | [optional] |
11
+ | **warning** | [**Warning**](Warning.md) | | [optional] |
12
+
13
+ ## Example
14
+
15
+ ```ruby
16
+ require 'ultracart_api'
17
+
18
+ instance = UltracartClient::ConversationDepartmentsResponse.new(
19
+ conversation_departments: null,
20
+ error: null,
21
+ metadata: null,
22
+ success: null,
23
+ warning: null
24
+ )
25
+ ```
26
+
@@ -0,0 +1,30 @@
1
+ # UltracartClient::ConversationEngagement
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **conversation_engagement_oid** | **Integer** | | [optional] |
8
+ | **customer_greeting** | **String** | | [optional] |
9
+ | **department_oids** | **Array<Integer>** | | [optional] |
10
+ | **engagement_name** | **String** | | [optional] |
11
+ | **equation** | **Object** | | [optional] |
12
+ | **time_on_page** | **Integer** | | [optional] |
13
+ | **visitor_type** | **String** | | [optional] |
14
+
15
+ ## Example
16
+
17
+ ```ruby
18
+ require 'ultracart_api'
19
+
20
+ instance = UltracartClient::ConversationEngagement.new(
21
+ conversation_engagement_oid: null,
22
+ customer_greeting: null,
23
+ department_oids: null,
24
+ engagement_name: null,
25
+ equation: null,
26
+ time_on_page: null,
27
+ visitor_type: null
28
+ )
29
+ ```
30
+
@@ -0,0 +1,26 @@
1
+ # UltracartClient::ConversationEngagementResponse
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **conversation_engagement** | [**ConversationEngagement**](ConversationEngagement.md) | | [optional] |
8
+ | **error** | [**Error**](Error.md) | | [optional] |
9
+ | **metadata** | [**ResponseMetadata**](ResponseMetadata.md) | | [optional] |
10
+ | **success** | **Boolean** | Indicates if API call was successful | [optional] |
11
+ | **warning** | [**Warning**](Warning.md) | | [optional] |
12
+
13
+ ## Example
14
+
15
+ ```ruby
16
+ require 'ultracart_api'
17
+
18
+ instance = UltracartClient::ConversationEngagementResponse.new(
19
+ conversation_engagement: null,
20
+ error: null,
21
+ metadata: null,
22
+ success: null,
23
+ warning: null
24
+ )
25
+ ```
26
+
@@ -0,0 +1,26 @@
1
+ # UltracartClient::ConversationEngagementsResponse
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **conversation_engagements** | [**Array<ConversationEngagement>**](ConversationEngagement.md) | | [optional] |
8
+ | **error** | [**Error**](Error.md) | | [optional] |
9
+ | **metadata** | [**ResponseMetadata**](ResponseMetadata.md) | | [optional] |
10
+ | **success** | **Boolean** | Indicates if API call was successful | [optional] |
11
+ | **warning** | [**Warning**](Warning.md) | | [optional] |
12
+
13
+ ## Example
14
+
15
+ ```ruby
16
+ require 'ultracart_api'
17
+
18
+ instance = UltracartClient::ConversationEngagementsResponse.new(
19
+ conversation_engagements: null,
20
+ error: null,
21
+ metadata: null,
22
+ success: null,
23
+ warning: null
24
+ )
25
+ ```
26
+
@@ -0,0 +1,18 @@
1
+ # UltracartClient::ConversationJoinRequest
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **participant_language_iso_code** | **String** | | [optional] |
8
+
9
+ ## Example
10
+
11
+ ```ruby
12
+ require 'ultracart_api'
13
+
14
+ instance = UltracartClient::ConversationJoinRequest.new(
15
+ participant_language_iso_code: null
16
+ )
17
+ ```
18
+
@@ -10,10 +10,12 @@
10
10
  | **client_message_id** | **String** | | [optional] |
11
11
  | **conversation_message_uuid** | **String** | | [optional] |
12
12
  | **delay_until_dts** | **String** | Delay message transmission until date/time | [optional] |
13
+ | **language_iso_code** | **String** | | [optional] |
13
14
  | **media_urls** | **Array<String>** | | [optional] |
14
15
  | **merchant_id** | **String** | | [optional] |
15
16
  | **message_dts** | **String** | Message date/time | [optional] |
16
17
  | **message_epoch** | **Integer** | Message epoch milliseconds | [optional] |
18
+ | **translations** | [**Array<ConversationMessageTranslation>**](ConversationMessageTranslation.md) | | [optional] |
17
19
  | **transport_statuses** | [**Array<ConversationMessageTransportStatus>**](ConversationMessageTransportStatus.md) | | [optional] |
18
20
  | **type** | **String** | Message type | [optional] |
19
21
  | **upload_keys** | **Array<String>** | | [optional] |
@@ -30,10 +32,12 @@ instance = UltracartClient::ConversationMessage.new(
30
32
  client_message_id: null,
31
33
  conversation_message_uuid: null,
32
34
  delay_until_dts: null,
35
+ language_iso_code: null,
33
36
  media_urls: null,
34
37
  merchant_id: null,
35
38
  message_dts: null,
36
39
  message_epoch: null,
40
+ translations: null,
37
41
  transport_statuses: null,
38
42
  type: null,
39
43
  upload_keys: null
@@ -0,0 +1,20 @@
1
+ # UltracartClient::ConversationMessageTranslation
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **body** | **String** | | [optional] |
8
+ | **language_iso_code** | **String** | | [optional] |
9
+
10
+ ## Example
11
+
12
+ ```ruby
13
+ require 'ultracart_api'
14
+
15
+ instance = UltracartClient::ConversationMessageTranslation.new(
16
+ body: null,
17
+ language_iso_code: null
18
+ )
19
+ ```
20
+
@@ -7,10 +7,13 @@
7
7
  | **conversation_participant_arn** | **String** | | [optional] |
8
8
  | **conversation_participant_name** | **String** | | [optional] |
9
9
  | **conversation_participant_uuid** | **String** | | [optional] |
10
+ | **email** | **String** | | [optional] |
10
11
  | **joined_dts** | **String** | Joined conversation date/time | [optional] |
12
+ | **language_iso_code** | **String** | | [optional] |
11
13
  | **last_message_dts** | **String** | Last message date/time | [optional] |
12
14
  | **left_dts** | **String** | Left conversation date/time | [optional] |
13
15
  | **profile_image_url** | **String** | | [optional] |
16
+ | **sms_phone_number** | **String** | | [optional] |
14
17
  | **status** | **String** | | [optional] |
15
18
  | **timezone** | **String** | | [optional] |
16
19
  | **unread_messages** | **Integer** | | [optional] |
@@ -24,10 +27,13 @@ instance = UltracartClient::ConversationParticipant.new(
24
27
  conversation_participant_arn: null,
25
28
  conversation_participant_name: null,
26
29
  conversation_participant_uuid: null,
30
+ email: null,
27
31
  joined_dts: null,
32
+ language_iso_code: null,
28
33
  last_message_dts: null,
29
34
  left_dts: null,
30
35
  profile_image_url: null,
36
+ sms_phone_number: null,
31
37
  status: null,
32
38
  timezone: null,
33
39
  unread_messages: null
@@ -9,6 +9,7 @@
9
9
  | **conversation_webchat_queue_uuid** | **String** | | [optional] |
10
10
  | **email** | **String** | | [optional] |
11
11
  | **join_dts** | **String** | Date/time the customer joined the queue | [optional] |
12
+ | **participant_language_iso_code** | **String** | | [optional] |
12
13
  | **question** | **String** | | [optional] |
13
14
 
14
15
  ## Example
@@ -22,6 +23,7 @@ instance = UltracartClient::ConversationWebchatQueueStatusQueueEntry.new(
22
23
  conversation_webchat_queue_uuid: null,
23
24
  email: null,
24
25
  join_dts: null,
26
+ participant_language_iso_code: null,
25
27
  question: null
26
28
  )
27
29
  ```