ultracart_api 4.0.201 → 4.0.202

Sign up to get free protection for your applications and to get access to all the features.
Files changed (73) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +80 -4
  3. data/docs/ConversationApi.md +3565 -549
  4. data/docs/ConversationPbxAgent.md +34 -0
  5. data/docs/ConversationPbxAgentResponse.md +26 -0
  6. data/docs/ConversationPbxAgentsResponse.md +26 -0
  7. data/docs/ConversationPbxAudio.md +34 -0
  8. data/docs/ConversationPbxAudioResponse.md +26 -0
  9. data/docs/ConversationPbxAudiosResponse.md +26 -0
  10. data/docs/ConversationPbxCustomerSnapshotRequest.md +32 -0
  11. data/docs/ConversationPbxCustomerSnapshotResponse.md +30 -0
  12. data/docs/ConversationPbxMenu.md +36 -0
  13. data/docs/ConversationPbxMenuMapping.md +24 -0
  14. data/docs/ConversationPbxMenuResponse.md +26 -0
  15. data/docs/ConversationPbxMenusResponse.md +26 -0
  16. data/docs/ConversationPbxPhoneNumber.md +26 -0
  17. data/docs/ConversationPbxPhoneNumberResponse.md +26 -0
  18. data/docs/ConversationPbxPhoneNumbersResponse.md +26 -0
  19. data/docs/ConversationPbxQueue.md +52 -0
  20. data/docs/ConversationPbxQueueMembers.md +20 -0
  21. data/docs/ConversationPbxQueueResponse.md +26 -0
  22. data/docs/ConversationPbxQueuesResponse.md +26 -0
  23. data/docs/ConversationPbxTimeBased.md +24 -0
  24. data/docs/ConversationPbxTimeBasedMapping.md +24 -0
  25. data/docs/ConversationPbxTimeBasedMappingConfig.md +20 -0
  26. data/docs/ConversationPbxTimeBasedResponse.md +26 -0
  27. data/docs/ConversationPbxTimeBasedsResponse.md +26 -0
  28. data/docs/ConversationPbxTimeRange.md +26 -0
  29. data/docs/ConversationPbxTimeRangeConfig.md +28 -0
  30. data/docs/ConversationPbxTimeRangeResponse.md +26 -0
  31. data/docs/ConversationPbxTimeRangesResponse.md +26 -0
  32. data/docs/ConversationPbxVoicemailMailbox.md +38 -0
  33. data/docs/ConversationPbxVoicemailMailboxResponse.md +26 -0
  34. data/docs/ConversationPbxVoicemailMailboxesResponse.md +26 -0
  35. data/docs/WorkflowApi.md +69 -0
  36. data/docs/WorkflowTaskTagsResponse.md +26 -0
  37. data/lib/ultracart_api/api/conversation_api.rb +3422 -649
  38. data/lib/ultracart_api/api/workflow_api.rb +58 -0
  39. data/lib/ultracart_api/models/conversation_pbx_agent.rb +360 -0
  40. data/lib/ultracart_api/models/conversation_pbx_agent_response.rb +256 -0
  41. data/lib/ultracart_api/models/conversation_pbx_agents_response.rb +258 -0
  42. data/lib/ultracart_api/models/conversation_pbx_audio.rb +390 -0
  43. data/lib/ultracart_api/models/conversation_pbx_audio_response.rb +256 -0
  44. data/lib/ultracart_api/models/conversation_pbx_audios_response.rb +258 -0
  45. data/lib/ultracart_api/models/conversation_pbx_customer_snapshot_request.rb +283 -0
  46. data/lib/ultracart_api/models/conversation_pbx_customer_snapshot_response.rb +278 -0
  47. data/lib/ultracart_api/models/conversation_pbx_menu.rb +402 -0
  48. data/lib/ultracart_api/models/conversation_pbx_menu_mapping.rb +250 -0
  49. data/lib/ultracart_api/models/conversation_pbx_menu_response.rb +256 -0
  50. data/lib/ultracart_api/models/conversation_pbx_menus_response.rb +258 -0
  51. data/lib/ultracart_api/models/conversation_pbx_phone_number.rb +335 -0
  52. data/lib/ultracart_api/models/conversation_pbx_phone_number_response.rb +256 -0
  53. data/lib/ultracart_api/models/conversation_pbx_phone_numbers_response.rb +258 -0
  54. data/lib/ultracart_api/models/conversation_pbx_queue.rb +539 -0
  55. data/lib/ultracart_api/models/conversation_pbx_queue_members.rb +232 -0
  56. data/lib/ultracart_api/models/conversation_pbx_queue_response.rb +256 -0
  57. data/lib/ultracart_api/models/conversation_pbx_queues_response.rb +258 -0
  58. data/lib/ultracart_api/models/conversation_pbx_time_based.rb +246 -0
  59. data/lib/ultracart_api/models/conversation_pbx_time_based_mapping.rb +310 -0
  60. data/lib/ultracart_api/models/conversation_pbx_time_based_mapping_config.rb +231 -0
  61. data/lib/ultracart_api/models/conversation_pbx_time_based_response.rb +256 -0
  62. data/lib/ultracart_api/models/conversation_pbx_time_baseds_response.rb +258 -0
  63. data/lib/ultracart_api/models/conversation_pbx_time_range.rb +322 -0
  64. data/lib/ultracart_api/models/conversation_pbx_time_range_config.rb +270 -0
  65. data/lib/ultracart_api/models/conversation_pbx_time_range_response.rb +256 -0
  66. data/lib/ultracart_api/models/conversation_pbx_time_ranges_response.rb +258 -0
  67. data/lib/ultracart_api/models/conversation_pbx_voicemail_mailbox.rb +440 -0
  68. data/lib/ultracart_api/models/conversation_pbx_voicemail_mailbox_response.rb +256 -0
  69. data/lib/ultracart_api/models/conversation_pbx_voicemail_mailboxes_response.rb +258 -0
  70. data/lib/ultracart_api/models/workflow_task_tags_response.rb +259 -0
  71. data/lib/ultracart_api/version.rb +1 -1
  72. data/lib/ultracart_api.rb +32 -0
  73. metadata +66 -2
@@ -0,0 +1,34 @@
1
+ # UltracartClient::ConversationPbxAgent
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **cellphone** | **String** | Cellphone number of agent in E.164 format | [optional] |
8
+ | **conversation_pbx_agent_uuid** | **String** | Conversation Pbx Agent unique identifier | [optional] |
9
+ | **conversation_pbx_voicemail_mailbox_uuid** | **String** | Conversation Pbx Voicemail Mailbox UUID | [optional] |
10
+ | **forward_calls_to_cellphone** | **Boolean** | True if calls to this agent should be forwarded to their cellphone | [optional] |
11
+ | **merchant_id** | **String** | Merchant Id | [optional] |
12
+ | **record_outgoing_automatically** | **Boolean** | True if outgoing calls should be automatically recorded | [optional] |
13
+ | **twilio_taskrouter_worker_id** | **String** | Twilio taskrouter worker Id | [optional] |
14
+ | **user_id** | **Integer** | User Id | [optional] |
15
+ | **voicemail** | **Boolean** | True if this agent has voicemail configured | [optional] |
16
+
17
+ ## Example
18
+
19
+ ```ruby
20
+ require 'ultracart_api'
21
+
22
+ instance = UltracartClient::ConversationPbxAgent.new(
23
+ cellphone: null,
24
+ conversation_pbx_agent_uuid: null,
25
+ conversation_pbx_voicemail_mailbox_uuid: null,
26
+ forward_calls_to_cellphone: null,
27
+ merchant_id: null,
28
+ record_outgoing_automatically: null,
29
+ twilio_taskrouter_worker_id: null,
30
+ user_id: null,
31
+ voicemail: null
32
+ )
33
+ ```
34
+
@@ -0,0 +1,26 @@
1
+ # UltracartClient::ConversationPbxAgentResponse
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **agent** | [**ConversationPbxAgent**](ConversationPbxAgent.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::ConversationPbxAgentResponse.new(
19
+ agent: null,
20
+ error: null,
21
+ metadata: null,
22
+ success: null,
23
+ warning: null
24
+ )
25
+ ```
26
+
@@ -0,0 +1,26 @@
1
+ # UltracartClient::ConversationPbxAgentsResponse
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **agents** | [**Array<ConversationPbxAgent>**](ConversationPbxAgent.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::ConversationPbxAgentsResponse.new(
19
+ agents: null,
20
+ error: null,
21
+ metadata: null,
22
+ success: null,
23
+ warning: null
24
+ )
25
+ ```
26
+
@@ -0,0 +1,34 @@
1
+ # UltracartClient::ConversationPbxAudio
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **audio_s3_listing_key** | **String** | Audio S3 Listing Key | [optional] |
8
+ | **conversation_pbx_audio_uuid** | **String** | Conversation Pbx Audio UUID | [optional] |
9
+ | **default_hold_music** | **Boolean** | If true, this will be the default hold music | [optional] |
10
+ | **description** | **String** | Description of this audio | [optional] |
11
+ | **filename** | **String** | Filename | [optional] |
12
+ | **merchant_id** | **String** | Merchant Id | [optional] |
13
+ | **mime_type** | **String** | Mime Type | [optional] |
14
+ | **user_id** | **Integer** | User Id | [optional] |
15
+ | **version** | **Integer** | Version | [optional] |
16
+
17
+ ## Example
18
+
19
+ ```ruby
20
+ require 'ultracart_api'
21
+
22
+ instance = UltracartClient::ConversationPbxAudio.new(
23
+ audio_s3_listing_key: null,
24
+ conversation_pbx_audio_uuid: null,
25
+ default_hold_music: null,
26
+ description: null,
27
+ filename: null,
28
+ merchant_id: null,
29
+ mime_type: null,
30
+ user_id: null,
31
+ version: null
32
+ )
33
+ ```
34
+
@@ -0,0 +1,26 @@
1
+ # UltracartClient::ConversationPbxAudioResponse
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **audio** | [**ConversationPbxAudio**](ConversationPbxAudio.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::ConversationPbxAudioResponse.new(
19
+ audio: null,
20
+ error: null,
21
+ metadata: null,
22
+ success: null,
23
+ warning: null
24
+ )
25
+ ```
26
+
@@ -0,0 +1,26 @@
1
+ # UltracartClient::ConversationPbxAudiosResponse
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **audios** | [**Array<ConversationPbxAudio>**](ConversationPbxAudio.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::ConversationPbxAudiosResponse.new(
19
+ audios: null,
20
+ error: null,
21
+ metadata: null,
22
+ success: null,
23
+ warning: null
24
+ )
25
+ ```
26
+
@@ -0,0 +1,32 @@
1
+ # UltracartClient::ConversationPbxCustomerSnapshotRequest
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **auto_order_expand** | **String** | | [optional] |
8
+ | **customer_expand** | **String** | | [optional] |
9
+ | **error** | [**Error**](Error.md) | | [optional] |
10
+ | **metadata** | [**ResponseMetadata**](ResponseMetadata.md) | | [optional] |
11
+ | **order_expand** | **String** | | [optional] |
12
+ | **phone_number** | **String** | | [optional] |
13
+ | **success** | **Boolean** | Indicates if API call was successful | [optional] |
14
+ | **warning** | [**Warning**](Warning.md) | | [optional] |
15
+
16
+ ## Example
17
+
18
+ ```ruby
19
+ require 'ultracart_api'
20
+
21
+ instance = UltracartClient::ConversationPbxCustomerSnapshotRequest.new(
22
+ auto_order_expand: null,
23
+ customer_expand: null,
24
+ error: null,
25
+ metadata: null,
26
+ order_expand: null,
27
+ phone_number: null,
28
+ success: null,
29
+ warning: null
30
+ )
31
+ ```
32
+
@@ -0,0 +1,30 @@
1
+ # UltracartClient::ConversationPbxCustomerSnapshotResponse
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **auto_orders** | [**Array<AutoOrder>**](AutoOrder.md) | | [optional] |
8
+ | **customer** | [**Customer**](Customer.md) | | [optional] |
9
+ | **error** | [**Error**](Error.md) | | [optional] |
10
+ | **metadata** | [**ResponseMetadata**](ResponseMetadata.md) | | [optional] |
11
+ | **orders** | [**Array<Order>**](Order.md) | | [optional] |
12
+ | **success** | **Boolean** | Indicates if API call was successful | [optional] |
13
+ | **warning** | [**Warning**](Warning.md) | | [optional] |
14
+
15
+ ## Example
16
+
17
+ ```ruby
18
+ require 'ultracart_api'
19
+
20
+ instance = UltracartClient::ConversationPbxCustomerSnapshotResponse.new(
21
+ auto_orders: null,
22
+ customer: null,
23
+ error: null,
24
+ metadata: null,
25
+ orders: null,
26
+ success: null,
27
+ warning: null
28
+ )
29
+ ```
30
+
@@ -0,0 +1,36 @@
1
+ # UltracartClient::ConversationPbxMenu
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **allow_direct_extensions** | **Boolean** | If true, the customer is allowed to input direct extensions within this menu | [optional] |
8
+ | **conversation_pbx_menu_uuid** | **String** | Conversation Pbx Menu UUID | [optional] |
9
+ | **default_action** | **String** | The default action for this menu | [optional] |
10
+ | **default_action_target** | **String** | The default action target for this menu | [optional] |
11
+ | **mappings** | [**Array<ConversationPbxMenuMapping>**](ConversationPbxMenuMapping.md) | Action mappings for this menu | [optional] |
12
+ | **merchant_id** | **String** | Merchant Id | [optional] |
13
+ | **name** | **String** | Menu name | [optional] |
14
+ | **play_audio_uuid** | **String** | An optional audio clip that plays when a customer enters this menu | [optional] |
15
+ | **say** | **String** | An optional saying that plays when a customer enters this menu | [optional] |
16
+ | **timeout** | **Integer** | The idle seconds before this menu times out | [optional] |
17
+
18
+ ## Example
19
+
20
+ ```ruby
21
+ require 'ultracart_api'
22
+
23
+ instance = UltracartClient::ConversationPbxMenu.new(
24
+ allow_direct_extensions: null,
25
+ conversation_pbx_menu_uuid: null,
26
+ default_action: null,
27
+ default_action_target: null,
28
+ mappings: null,
29
+ merchant_id: null,
30
+ name: null,
31
+ play_audio_uuid: null,
32
+ say: null,
33
+ timeout: null
34
+ )
35
+ ```
36
+
@@ -0,0 +1,24 @@
1
+ # UltracartClient::ConversationPbxMenuMapping
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **action** | **String** | Action | [optional] |
8
+ | **action_target** | **String** | Action target | [optional] |
9
+ | **digits** | **Integer** | Digits | [optional] |
10
+ | **speech** | **String** | Speech | [optional] |
11
+
12
+ ## Example
13
+
14
+ ```ruby
15
+ require 'ultracart_api'
16
+
17
+ instance = UltracartClient::ConversationPbxMenuMapping.new(
18
+ action: null,
19
+ action_target: null,
20
+ digits: null,
21
+ speech: null
22
+ )
23
+ ```
24
+
@@ -0,0 +1,26 @@
1
+ # UltracartClient::ConversationPbxMenuResponse
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **error** | [**Error**](Error.md) | | [optional] |
8
+ | **menu** | [**ConversationPbxMenu**](ConversationPbxMenu.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::ConversationPbxMenuResponse.new(
19
+ error: null,
20
+ menu: null,
21
+ metadata: null,
22
+ success: null,
23
+ warning: null
24
+ )
25
+ ```
26
+
@@ -0,0 +1,26 @@
1
+ # UltracartClient::ConversationPbxMenusResponse
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **error** | [**Error**](Error.md) | | [optional] |
8
+ | **menus** | [**Array<ConversationPbxMenu>**](ConversationPbxMenu.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::ConversationPbxMenusResponse.new(
19
+ error: null,
20
+ menus: null,
21
+ metadata: null,
22
+ success: null,
23
+ warning: null
24
+ )
25
+ ```
26
+
@@ -0,0 +1,26 @@
1
+ # UltracartClient::ConversationPbxPhoneNumber
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **action** | **String** | Action | [optional] |
8
+ | **action_target** | **String** | Action target | [optional] |
9
+ | **conversation_pbx_time_range_uuid** | **String** | Conversation Pbx Phone Number UUID | [optional] |
10
+ | **merchant_id** | **String** | Merchant Id | [optional] |
11
+ | **phone_number** | **String** | Phone number | [optional] |
12
+
13
+ ## Example
14
+
15
+ ```ruby
16
+ require 'ultracart_api'
17
+
18
+ instance = UltracartClient::ConversationPbxPhoneNumber.new(
19
+ action: null,
20
+ action_target: null,
21
+ conversation_pbx_time_range_uuid: null,
22
+ merchant_id: null,
23
+ phone_number: null
24
+ )
25
+ ```
26
+
@@ -0,0 +1,26 @@
1
+ # UltracartClient::ConversationPbxPhoneNumberResponse
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **error** | [**Error**](Error.md) | | [optional] |
8
+ | **metadata** | [**ResponseMetadata**](ResponseMetadata.md) | | [optional] |
9
+ | **phone_number** | [**ConversationPbxPhoneNumber**](ConversationPbxPhoneNumber.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::ConversationPbxPhoneNumberResponse.new(
19
+ error: null,
20
+ metadata: null,
21
+ phone_number: null,
22
+ success: null,
23
+ warning: null
24
+ )
25
+ ```
26
+
@@ -0,0 +1,26 @@
1
+ # UltracartClient::ConversationPbxPhoneNumbersResponse
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **error** | [**Error**](Error.md) | | [optional] |
8
+ | **metadata** | [**ResponseMetadata**](ResponseMetadata.md) | | [optional] |
9
+ | **phone_numbers** | [**Array<ConversationPbxPhoneNumber>**](ConversationPbxPhoneNumber.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::ConversationPbxPhoneNumbersResponse.new(
19
+ error: null,
20
+ metadata: null,
21
+ phone_numbers: null,
22
+ success: null,
23
+ warning: null
24
+ )
25
+ ```
26
+
@@ -0,0 +1,52 @@
1
+ # UltracartClient::ConversationPbxQueue
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **announce_queue_position** | **Boolean** | If true, the customer is told their queue position upon entering the queue | [optional] |
8
+ | **conversation_pbx_queue_uuid** | **String** | Conversation Pbx Queue unique identifier | [optional] |
9
+ | **conversation_voicemail_mailbox_uuid** | **String** | The voicemail mailbox associated with this queue | [optional] |
10
+ | **hold_conversation_pbx_audio_uuid** | **String** | The audio to play while holding in a queue | [optional] |
11
+ | **max_hold_seconds** | **Integer** | The maximum number of seconds for a customer to hold in a queue | [optional] |
12
+ | **members** | [**ConversationPbxQueueMembers**](ConversationPbxQueueMembers.md) | | [optional] |
13
+ | **merchant_id** | **String** | Merchant Id | [optional] |
14
+ | **name** | **String** | Name of queue | [optional] |
15
+ | **no_agent_available_play_audio_uuid** | **String** | When no agent is available after the max_hold_seconds, say this | [optional] |
16
+ | **no_agent_available_say** | **String** | When no agent is available after the max_hold_seconds, say this | [optional] |
17
+ | **no_agent_available_say_voice** | **String** | The type of voice used to say text when no agent is available | [optional] |
18
+ | **play_audio_uuid** | **String** | Audio played when customer enters a queue | [optional] |
19
+ | **record_call** | **Boolean** | If true, any calls in this queue are recorded | [optional] |
20
+ | **say** | **String** | Say text when a customer enters queue | [optional] |
21
+ | **say_voice** | **String** | The type of voice to use when say text is spoken | [optional] |
22
+ | **twilio_taskrouter_workflow_sid** | **String** | Twilio taskrouter workflow sid | [optional] |
23
+ | **twilio_workspace_queue_sid** | **String** | Twilio workspace queue sid | [optional] |
24
+ | **voicemail** | **Boolean** | If true, this queue has a voicemail associated with it | [optional] |
25
+
26
+ ## Example
27
+
28
+ ```ruby
29
+ require 'ultracart_api'
30
+
31
+ instance = UltracartClient::ConversationPbxQueue.new(
32
+ announce_queue_position: null,
33
+ conversation_pbx_queue_uuid: null,
34
+ conversation_voicemail_mailbox_uuid: null,
35
+ hold_conversation_pbx_audio_uuid: null,
36
+ max_hold_seconds: null,
37
+ members: null,
38
+ merchant_id: null,
39
+ name: null,
40
+ no_agent_available_play_audio_uuid: null,
41
+ no_agent_available_say: null,
42
+ no_agent_available_say_voice: null,
43
+ play_audio_uuid: null,
44
+ record_call: null,
45
+ say: null,
46
+ say_voice: null,
47
+ twilio_taskrouter_workflow_sid: null,
48
+ twilio_workspace_queue_sid: null,
49
+ voicemail: null
50
+ )
51
+ ```
52
+
@@ -0,0 +1,20 @@
1
+ # UltracartClient::ConversationPbxQueueMembers
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **groups** | **Array<Integer>** | | [optional] |
8
+ | **users** | **Array<Integer>** | | [optional] |
9
+
10
+ ## Example
11
+
12
+ ```ruby
13
+ require 'ultracart_api'
14
+
15
+ instance = UltracartClient::ConversationPbxQueueMembers.new(
16
+ groups: null,
17
+ users: null
18
+ )
19
+ ```
20
+
@@ -0,0 +1,26 @@
1
+ # UltracartClient::ConversationPbxQueueResponse
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **error** | [**Error**](Error.md) | | [optional] |
8
+ | **metadata** | [**ResponseMetadata**](ResponseMetadata.md) | | [optional] |
9
+ | **queue** | [**ConversationPbxQueue**](ConversationPbxQueue.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::ConversationPbxQueueResponse.new(
19
+ error: null,
20
+ metadata: null,
21
+ queue: null,
22
+ success: null,
23
+ warning: null
24
+ )
25
+ ```
26
+
@@ -0,0 +1,26 @@
1
+ # UltracartClient::ConversationPbxQueuesResponse
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **error** | [**Error**](Error.md) | | [optional] |
8
+ | **metadata** | [**ResponseMetadata**](ResponseMetadata.md) | | [optional] |
9
+ | **queues** | [**Array<ConversationPbxQueue>**](ConversationPbxQueue.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::ConversationPbxQueuesResponse.new(
19
+ error: null,
20
+ metadata: null,
21
+ queues: null,
22
+ success: null,
23
+ warning: null
24
+ )
25
+ ```
26
+
@@ -0,0 +1,24 @@
1
+ # UltracartClient::ConversationPbxTimeBased
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **conversation_pbx_time_based_uuid** | **String** | | [optional] |
8
+ | **mapping_config** | [**ConversationPbxTimeBasedMappingConfig**](ConversationPbxTimeBasedMappingConfig.md) | | [optional] |
9
+ | **merchant_id** | **String** | | [optional] |
10
+ | **time_based_name** | **String** | | [optional] |
11
+
12
+ ## Example
13
+
14
+ ```ruby
15
+ require 'ultracart_api'
16
+
17
+ instance = UltracartClient::ConversationPbxTimeBased.new(
18
+ conversation_pbx_time_based_uuid: null,
19
+ mapping_config: null,
20
+ merchant_id: null,
21
+ time_based_name: null
22
+ )
23
+ ```
24
+
@@ -0,0 +1,24 @@
1
+ # UltracartClient::ConversationPbxTimeBasedMapping
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **action** | **String** | Action | [optional] |
8
+ | **action_target** | **String** | Action target | [optional] |
9
+ | **name** | **String** | Name | [optional] |
10
+ | **time_range_uuid** | **String** | Time range UUID | [optional] |
11
+
12
+ ## Example
13
+
14
+ ```ruby
15
+ require 'ultracart_api'
16
+
17
+ instance = UltracartClient::ConversationPbxTimeBasedMapping.new(
18
+ action: null,
19
+ action_target: null,
20
+ name: null,
21
+ time_range_uuid: null
22
+ )
23
+ ```
24
+
@@ -0,0 +1,20 @@
1
+ # UltracartClient::ConversationPbxTimeBasedMappingConfig
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **default** | [**ConversationPbxTimeBasedMapping**](ConversationPbxTimeBasedMapping.md) | | [optional] |
8
+ | **mappings** | [**Array<ConversationPbxTimeBasedMapping>**](ConversationPbxTimeBasedMapping.md) | Mappings | [optional] |
9
+
10
+ ## Example
11
+
12
+ ```ruby
13
+ require 'ultracart_api'
14
+
15
+ instance = UltracartClient::ConversationPbxTimeBasedMappingConfig.new(
16
+ default: null,
17
+ mappings: null
18
+ )
19
+ ```
20
+
@@ -0,0 +1,26 @@
1
+ # UltracartClient::ConversationPbxTimeBasedResponse
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **error** | [**Error**](Error.md) | | [optional] |
8
+ | **metadata** | [**ResponseMetadata**](ResponseMetadata.md) | | [optional] |
9
+ | **success** | **Boolean** | Indicates if API call was successful | [optional] |
10
+ | **time_based** | [**ConversationPbxTimeBased**](ConversationPbxTimeBased.md) | | [optional] |
11
+ | **warning** | [**Warning**](Warning.md) | | [optional] |
12
+
13
+ ## Example
14
+
15
+ ```ruby
16
+ require 'ultracart_api'
17
+
18
+ instance = UltracartClient::ConversationPbxTimeBasedResponse.new(
19
+ error: null,
20
+ metadata: null,
21
+ success: null,
22
+ time_based: null,
23
+ warning: null
24
+ )
25
+ ```
26
+