ultracart_api 4.1.39 → 4.1.41

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.
@@ -0,0 +1,26 @@
1
+ # UltracartClient::ConversationPbxAvailablePhoneNumbersResponse
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **available_phone_numbers** | [**Array<ConversationPbxAvailablePhoneNumber>**](ConversationPbxAvailablePhoneNumber.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::ConversationPbxAvailablePhoneNumbersResponse.new(
19
+ available_phone_numbers: null,
20
+ error: null,
21
+ metadata: null,
22
+ success: null,
23
+ warning: null
24
+ )
25
+ ```
26
+
@@ -7,6 +7,7 @@
7
7
  | **action** | **String** | Action | [optional] |
8
8
  | **action_target** | **String** | Action target. This is the UUID associated with the configuration object of that particular type. | [optional] |
9
9
  | **conversation_pbx_phone_number_uuid** | **String** | Conversation Pbx Phone Number UUID | [optional] |
10
+ | **deletion_protected** | **Boolean** | If true, this phone number cannot be deleted through the API. It must be deleted via the Twilio console. | [optional] |
10
11
  | **merchant_id** | **String** | Merchant Id | [optional] |
11
12
  | **phone_number** | **String** | Phone number | [optional] |
12
13
 
@@ -19,6 +20,7 @@ instance = UltracartClient::ConversationPbxPhoneNumber.new(
19
20
  action: null,
20
21
  action_target: null,
21
22
  conversation_pbx_phone_number_uuid: null,
23
+ deletion_protected: null,
22
24
  merchant_id: null,
23
25
  phone_number: null
24
26
  )
@@ -0,0 +1,26 @@
1
+ # UltracartClient::ConversationPbxPhoneNumberPurchaseRequest
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **action** | **String** | Initial action for incoming calls | [optional] |
8
+ | **action_target** | **String** | Initial action target UUID | [optional] |
9
+ | **address_sid** | **String** | Address SID if required for regulatory compliance | [optional] |
10
+ | **friendly_name** | **String** | Friendly name for the phone number | [optional] |
11
+ | **phone_number** | **String** | Phone number to purchase in E.164 format (from search results) | [optional] |
12
+
13
+ ## Example
14
+
15
+ ```ruby
16
+ require 'ultracart_api'
17
+
18
+ instance = UltracartClient::ConversationPbxPhoneNumberPurchaseRequest.new(
19
+ action: null,
20
+ action_target: null,
21
+ address_sid: null,
22
+ friendly_name: null,
23
+ phone_number: null
24
+ )
25
+ ```
26
+