ultracart-rest-sdk 4.0.218__py3-none-any.whl → 4.0.220__py3-none-any.whl
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.
- ultracart/__init__.py +1 -1
- ultracart/api/conversation_api.py +27 -569
- ultracart/api_client.py +1 -1
- ultracart/configuration.py +1 -1
- ultracart/model/conversation_pbx_agent.py +30 -0
- ultracart/model/conversation_pbx_voicemail_mailbox.py +17 -10
- {ultracart_rest_sdk-4.0.218.dist-info → ultracart_rest_sdk-4.0.220.dist-info}/METADATA +1 -1
- {ultracart_rest_sdk-4.0.218.dist-info → ultracart_rest_sdk-4.0.220.dist-info}/RECORD +11 -11
- {ultracart_rest_sdk-4.0.218.dist-info → ultracart_rest_sdk-4.0.220.dist-info}/LICENSE +0 -0
- {ultracart_rest_sdk-4.0.218.dist-info → ultracart_rest_sdk-4.0.220.dist-info}/WHEEL +0 -0
- {ultracart_rest_sdk-4.0.218.dist-info → ultracart_rest_sdk-4.0.220.dist-info}/top_level.txt +0 -0
ultracart/__init__.py
CHANGED
|
@@ -263,58 +263,6 @@ class ConversationApi(object):
|
|
|
263
263
|
},
|
|
264
264
|
api_client=api_client
|
|
265
265
|
)
|
|
266
|
-
self.delete_pbx_agent_endpoint = _Endpoint(
|
|
267
|
-
settings={
|
|
268
|
-
'response_type': (ConversationPbxAgentResponse,),
|
|
269
|
-
'auth': [
|
|
270
|
-
'ultraCartOauth',
|
|
271
|
-
'ultraCartSimpleApiKey'
|
|
272
|
-
],
|
|
273
|
-
'endpoint_path': '/conversation/pbx/agent/{conversationPbxAgentUuid}',
|
|
274
|
-
'operation_id': 'delete_pbx_agent',
|
|
275
|
-
'http_method': 'DELETE',
|
|
276
|
-
'servers': None,
|
|
277
|
-
},
|
|
278
|
-
params_map={
|
|
279
|
-
'all': [
|
|
280
|
-
'conversation_pbx_agent_uuid',
|
|
281
|
-
],
|
|
282
|
-
'required': [
|
|
283
|
-
'conversation_pbx_agent_uuid',
|
|
284
|
-
],
|
|
285
|
-
'nullable': [
|
|
286
|
-
],
|
|
287
|
-
'enum': [
|
|
288
|
-
],
|
|
289
|
-
'validation': [
|
|
290
|
-
]
|
|
291
|
-
},
|
|
292
|
-
root_map={
|
|
293
|
-
'validations': {
|
|
294
|
-
},
|
|
295
|
-
'allowed_values': {
|
|
296
|
-
},
|
|
297
|
-
'openapi_types': {
|
|
298
|
-
'conversation_pbx_agent_uuid':
|
|
299
|
-
(str,),
|
|
300
|
-
},
|
|
301
|
-
'attribute_map': {
|
|
302
|
-
'conversation_pbx_agent_uuid': 'conversationPbxAgentUuid',
|
|
303
|
-
},
|
|
304
|
-
'location_map': {
|
|
305
|
-
'conversation_pbx_agent_uuid': 'path',
|
|
306
|
-
},
|
|
307
|
-
'collection_format_map': {
|
|
308
|
-
}
|
|
309
|
-
},
|
|
310
|
-
headers_map={
|
|
311
|
-
'accept': [
|
|
312
|
-
'application/json'
|
|
313
|
-
],
|
|
314
|
-
'content_type': [],
|
|
315
|
-
},
|
|
316
|
-
api_client=api_client
|
|
317
|
-
)
|
|
318
266
|
self.delete_pbx_agent_voicemail_endpoint = _Endpoint(
|
|
319
267
|
settings={
|
|
320
268
|
'response_type': None,
|
|
@@ -471,58 +419,6 @@ class ConversationApi(object):
|
|
|
471
419
|
},
|
|
472
420
|
api_client=api_client
|
|
473
421
|
)
|
|
474
|
-
self.delete_pbx_phone_number_endpoint = _Endpoint(
|
|
475
|
-
settings={
|
|
476
|
-
'response_type': (ConversationPbxPhoneNumberResponse,),
|
|
477
|
-
'auth': [
|
|
478
|
-
'ultraCartOauth',
|
|
479
|
-
'ultraCartSimpleApiKey'
|
|
480
|
-
],
|
|
481
|
-
'endpoint_path': '/conversation/pbx/phone_number/{conversationPbxPhoneNumberUuid}',
|
|
482
|
-
'operation_id': 'delete_pbx_phone_number',
|
|
483
|
-
'http_method': 'DELETE',
|
|
484
|
-
'servers': None,
|
|
485
|
-
},
|
|
486
|
-
params_map={
|
|
487
|
-
'all': [
|
|
488
|
-
'conversation_pbx_phone_number_uuid',
|
|
489
|
-
],
|
|
490
|
-
'required': [
|
|
491
|
-
'conversation_pbx_phone_number_uuid',
|
|
492
|
-
],
|
|
493
|
-
'nullable': [
|
|
494
|
-
],
|
|
495
|
-
'enum': [
|
|
496
|
-
],
|
|
497
|
-
'validation': [
|
|
498
|
-
]
|
|
499
|
-
},
|
|
500
|
-
root_map={
|
|
501
|
-
'validations': {
|
|
502
|
-
},
|
|
503
|
-
'allowed_values': {
|
|
504
|
-
},
|
|
505
|
-
'openapi_types': {
|
|
506
|
-
'conversation_pbx_phone_number_uuid':
|
|
507
|
-
(str,),
|
|
508
|
-
},
|
|
509
|
-
'attribute_map': {
|
|
510
|
-
'conversation_pbx_phone_number_uuid': 'conversationPbxPhoneNumberUuid',
|
|
511
|
-
},
|
|
512
|
-
'location_map': {
|
|
513
|
-
'conversation_pbx_phone_number_uuid': 'path',
|
|
514
|
-
},
|
|
515
|
-
'collection_format_map': {
|
|
516
|
-
}
|
|
517
|
-
},
|
|
518
|
-
headers_map={
|
|
519
|
-
'accept': [
|
|
520
|
-
'application/json'
|
|
521
|
-
],
|
|
522
|
-
'content_type': [],
|
|
523
|
-
},
|
|
524
|
-
api_client=api_client
|
|
525
|
-
)
|
|
526
422
|
self.delete_pbx_queue_endpoint = _Endpoint(
|
|
527
423
|
settings={
|
|
528
424
|
'response_type': (ConversationPbxQueueResponse,),
|
|
@@ -2985,59 +2881,6 @@ class ConversationApi(object):
|
|
|
2985
2881
|
},
|
|
2986
2882
|
api_client=api_client
|
|
2987
2883
|
)
|
|
2988
|
-
self.insert_pbx_agent_endpoint = _Endpoint(
|
|
2989
|
-
settings={
|
|
2990
|
-
'response_type': (ConversationPbxAgentResponse,),
|
|
2991
|
-
'auth': [
|
|
2992
|
-
'ultraCartOauth',
|
|
2993
|
-
'ultraCartSimpleApiKey'
|
|
2994
|
-
],
|
|
2995
|
-
'endpoint_path': '/conversation/pbx/agent',
|
|
2996
|
-
'operation_id': 'insert_pbx_agent',
|
|
2997
|
-
'http_method': 'POST',
|
|
2998
|
-
'servers': None,
|
|
2999
|
-
},
|
|
3000
|
-
params_map={
|
|
3001
|
-
'all': [
|
|
3002
|
-
'pbx_agent',
|
|
3003
|
-
],
|
|
3004
|
-
'required': [
|
|
3005
|
-
'pbx_agent',
|
|
3006
|
-
],
|
|
3007
|
-
'nullable': [
|
|
3008
|
-
],
|
|
3009
|
-
'enum': [
|
|
3010
|
-
],
|
|
3011
|
-
'validation': [
|
|
3012
|
-
]
|
|
3013
|
-
},
|
|
3014
|
-
root_map={
|
|
3015
|
-
'validations': {
|
|
3016
|
-
},
|
|
3017
|
-
'allowed_values': {
|
|
3018
|
-
},
|
|
3019
|
-
'openapi_types': {
|
|
3020
|
-
'pbx_agent':
|
|
3021
|
-
(ConversationPbxAgent,),
|
|
3022
|
-
},
|
|
3023
|
-
'attribute_map': {
|
|
3024
|
-
},
|
|
3025
|
-
'location_map': {
|
|
3026
|
-
'pbx_agent': 'body',
|
|
3027
|
-
},
|
|
3028
|
-
'collection_format_map': {
|
|
3029
|
-
}
|
|
3030
|
-
},
|
|
3031
|
-
headers_map={
|
|
3032
|
-
'accept': [
|
|
3033
|
-
'application/json'
|
|
3034
|
-
],
|
|
3035
|
-
'content_type': [
|
|
3036
|
-
'application/json'
|
|
3037
|
-
]
|
|
3038
|
-
},
|
|
3039
|
-
api_client=api_client
|
|
3040
|
-
)
|
|
3041
2884
|
self.insert_pbx_audio_endpoint = _Endpoint(
|
|
3042
2885
|
settings={
|
|
3043
2886
|
'response_type': (ConversationPbxAudioResponse,),
|
|
@@ -3144,59 +2987,6 @@ class ConversationApi(object):
|
|
|
3144
2987
|
},
|
|
3145
2988
|
api_client=api_client
|
|
3146
2989
|
)
|
|
3147
|
-
self.insert_pbx_phone_number_endpoint = _Endpoint(
|
|
3148
|
-
settings={
|
|
3149
|
-
'response_type': (ConversationPbxPhoneNumberResponse,),
|
|
3150
|
-
'auth': [
|
|
3151
|
-
'ultraCartOauth',
|
|
3152
|
-
'ultraCartSimpleApiKey'
|
|
3153
|
-
],
|
|
3154
|
-
'endpoint_path': '/conversation/pbx/phone_number',
|
|
3155
|
-
'operation_id': 'insert_pbx_phone_number',
|
|
3156
|
-
'http_method': 'POST',
|
|
3157
|
-
'servers': None,
|
|
3158
|
-
},
|
|
3159
|
-
params_map={
|
|
3160
|
-
'all': [
|
|
3161
|
-
'pbx_phone_number',
|
|
3162
|
-
],
|
|
3163
|
-
'required': [
|
|
3164
|
-
'pbx_phone_number',
|
|
3165
|
-
],
|
|
3166
|
-
'nullable': [
|
|
3167
|
-
],
|
|
3168
|
-
'enum': [
|
|
3169
|
-
],
|
|
3170
|
-
'validation': [
|
|
3171
|
-
]
|
|
3172
|
-
},
|
|
3173
|
-
root_map={
|
|
3174
|
-
'validations': {
|
|
3175
|
-
},
|
|
3176
|
-
'allowed_values': {
|
|
3177
|
-
},
|
|
3178
|
-
'openapi_types': {
|
|
3179
|
-
'pbx_phone_number':
|
|
3180
|
-
(ConversationPbxPhoneNumber,),
|
|
3181
|
-
},
|
|
3182
|
-
'attribute_map': {
|
|
3183
|
-
},
|
|
3184
|
-
'location_map': {
|
|
3185
|
-
'pbx_phone_number': 'body',
|
|
3186
|
-
},
|
|
3187
|
-
'collection_format_map': {
|
|
3188
|
-
}
|
|
3189
|
-
},
|
|
3190
|
-
headers_map={
|
|
3191
|
-
'accept': [
|
|
3192
|
-
'application/json'
|
|
3193
|
-
],
|
|
3194
|
-
'content_type': [
|
|
3195
|
-
'application/json'
|
|
3196
|
-
]
|
|
3197
|
-
},
|
|
3198
|
-
api_client=api_client
|
|
3199
|
-
)
|
|
3200
2990
|
self.insert_pbx_queue_endpoint = _Endpoint(
|
|
3201
2991
|
settings={
|
|
3202
2992
|
'response_type': (ConversationPbxQueueResponse,),
|
|
@@ -4902,22 +4692,22 @@ class ConversationApi(object):
|
|
|
4902
4692
|
conversation_engagement_oid
|
|
4903
4693
|
return self.delete_engagement_endpoint.call_with_http_info(**kwargs)
|
|
4904
4694
|
|
|
4905
|
-
def
|
|
4695
|
+
def delete_pbx_agent_voicemail(
|
|
4906
4696
|
self,
|
|
4907
|
-
|
|
4697
|
+
recording_sid,
|
|
4908
4698
|
**kwargs
|
|
4909
4699
|
):
|
|
4910
|
-
"""Delete
|
|
4700
|
+
"""Delete Agent Voicemail # noqa: E501
|
|
4911
4701
|
|
|
4912
|
-
Delete
|
|
4702
|
+
Delete pbx agent Voicemail # noqa: E501
|
|
4913
4703
|
This method makes a synchronous HTTP request by default. To make an
|
|
4914
4704
|
asynchronous HTTP request, please pass async_req=True
|
|
4915
4705
|
|
|
4916
|
-
>>> thread = api.
|
|
4706
|
+
>>> thread = api.delete_pbx_agent_voicemail(recording_sid, async_req=True)
|
|
4917
4707
|
>>> result = thread.get()
|
|
4918
4708
|
|
|
4919
4709
|
Args:
|
|
4920
|
-
|
|
4710
|
+
recording_sid (str):
|
|
4921
4711
|
|
|
4922
4712
|
Keyword Args:
|
|
4923
4713
|
_return_http_data_only (bool): response data without head status
|
|
@@ -4952,7 +4742,7 @@ class ConversationApi(object):
|
|
|
4952
4742
|
async_req (bool): execute request asynchronously
|
|
4953
4743
|
|
|
4954
4744
|
Returns:
|
|
4955
|
-
|
|
4745
|
+
None
|
|
4956
4746
|
If the method is called asynchronously, returns the request
|
|
4957
4747
|
thread.
|
|
4958
4748
|
"""
|
|
@@ -4981,26 +4771,26 @@ class ConversationApi(object):
|
|
|
4981
4771
|
'_content_type')
|
|
4982
4772
|
kwargs['_host_index'] = kwargs.get('_host_index')
|
|
4983
4773
|
kwargs['_request_auths'] = kwargs.get('_request_auths', None)
|
|
4984
|
-
kwargs['
|
|
4985
|
-
|
|
4986
|
-
return self.
|
|
4774
|
+
kwargs['recording_sid'] = \
|
|
4775
|
+
recording_sid
|
|
4776
|
+
return self.delete_pbx_agent_voicemail_endpoint.call_with_http_info(**kwargs)
|
|
4987
4777
|
|
|
4988
|
-
def
|
|
4778
|
+
def delete_pbx_audio(
|
|
4989
4779
|
self,
|
|
4990
|
-
|
|
4780
|
+
conversation_pbx_audio_uuid,
|
|
4991
4781
|
**kwargs
|
|
4992
4782
|
):
|
|
4993
|
-
"""Delete
|
|
4783
|
+
"""Delete pbx audio # noqa: E501
|
|
4994
4784
|
|
|
4995
|
-
Delete pbx
|
|
4785
|
+
Delete a pbx audio # noqa: E501
|
|
4996
4786
|
This method makes a synchronous HTTP request by default. To make an
|
|
4997
4787
|
asynchronous HTTP request, please pass async_req=True
|
|
4998
4788
|
|
|
4999
|
-
>>> thread = api.
|
|
4789
|
+
>>> thread = api.delete_pbx_audio(conversation_pbx_audio_uuid, async_req=True)
|
|
5000
4790
|
>>> result = thread.get()
|
|
5001
4791
|
|
|
5002
4792
|
Args:
|
|
5003
|
-
|
|
4793
|
+
conversation_pbx_audio_uuid (str):
|
|
5004
4794
|
|
|
5005
4795
|
Keyword Args:
|
|
5006
4796
|
_return_http_data_only (bool): response data without head status
|
|
@@ -5035,7 +4825,7 @@ class ConversationApi(object):
|
|
|
5035
4825
|
async_req (bool): execute request asynchronously
|
|
5036
4826
|
|
|
5037
4827
|
Returns:
|
|
5038
|
-
|
|
4828
|
+
ConversationPbxAudioResponse
|
|
5039
4829
|
If the method is called asynchronously, returns the request
|
|
5040
4830
|
thread.
|
|
5041
4831
|
"""
|
|
@@ -5064,26 +4854,26 @@ class ConversationApi(object):
|
|
|
5064
4854
|
'_content_type')
|
|
5065
4855
|
kwargs['_host_index'] = kwargs.get('_host_index')
|
|
5066
4856
|
kwargs['_request_auths'] = kwargs.get('_request_auths', None)
|
|
5067
|
-
kwargs['
|
|
5068
|
-
|
|
5069
|
-
return self.
|
|
4857
|
+
kwargs['conversation_pbx_audio_uuid'] = \
|
|
4858
|
+
conversation_pbx_audio_uuid
|
|
4859
|
+
return self.delete_pbx_audio_endpoint.call_with_http_info(**kwargs)
|
|
5070
4860
|
|
|
5071
|
-
def
|
|
4861
|
+
def delete_pbx_menu(
|
|
5072
4862
|
self,
|
|
5073
|
-
|
|
4863
|
+
conversation_pbx_menu_uuid,
|
|
5074
4864
|
**kwargs
|
|
5075
4865
|
):
|
|
5076
|
-
"""Delete pbx
|
|
4866
|
+
"""Delete pbx menu # noqa: E501
|
|
5077
4867
|
|
|
5078
|
-
Delete a pbx
|
|
4868
|
+
Delete a pbx menu # noqa: E501
|
|
5079
4869
|
This method makes a synchronous HTTP request by default. To make an
|
|
5080
4870
|
asynchronous HTTP request, please pass async_req=True
|
|
5081
4871
|
|
|
5082
|
-
>>> thread = api.
|
|
4872
|
+
>>> thread = api.delete_pbx_menu(conversation_pbx_menu_uuid, async_req=True)
|
|
5083
4873
|
>>> result = thread.get()
|
|
5084
4874
|
|
|
5085
4875
|
Args:
|
|
5086
|
-
|
|
4876
|
+
conversation_pbx_menu_uuid (str):
|
|
5087
4877
|
|
|
5088
4878
|
Keyword Args:
|
|
5089
4879
|
_return_http_data_only (bool): response data without head status
|
|
@@ -5118,90 +4908,7 @@ class ConversationApi(object):
|
|
|
5118
4908
|
async_req (bool): execute request asynchronously
|
|
5119
4909
|
|
|
5120
4910
|
Returns:
|
|
5121
|
-
|
|
5122
|
-
If the method is called asynchronously, returns the request
|
|
5123
|
-
thread.
|
|
5124
|
-
"""
|
|
5125
|
-
kwargs['async_req'] = kwargs.get(
|
|
5126
|
-
'async_req', False
|
|
5127
|
-
)
|
|
5128
|
-
kwargs['_return_http_data_only'] = kwargs.get(
|
|
5129
|
-
'_return_http_data_only', True
|
|
5130
|
-
)
|
|
5131
|
-
kwargs['_preload_content'] = kwargs.get(
|
|
5132
|
-
'_preload_content', True
|
|
5133
|
-
)
|
|
5134
|
-
kwargs['_request_timeout'] = kwargs.get(
|
|
5135
|
-
'_request_timeout', None
|
|
5136
|
-
)
|
|
5137
|
-
kwargs['_check_input_type'] = kwargs.get(
|
|
5138
|
-
'_check_input_type', True
|
|
5139
|
-
)
|
|
5140
|
-
kwargs['_check_return_type'] = kwargs.get(
|
|
5141
|
-
'_check_return_type', True
|
|
5142
|
-
)
|
|
5143
|
-
kwargs['_spec_property_naming'] = kwargs.get(
|
|
5144
|
-
'_spec_property_naming', False
|
|
5145
|
-
)
|
|
5146
|
-
kwargs['_content_type'] = kwargs.get(
|
|
5147
|
-
'_content_type')
|
|
5148
|
-
kwargs['_host_index'] = kwargs.get('_host_index')
|
|
5149
|
-
kwargs['_request_auths'] = kwargs.get('_request_auths', None)
|
|
5150
|
-
kwargs['conversation_pbx_audio_uuid'] = \
|
|
5151
|
-
conversation_pbx_audio_uuid
|
|
5152
|
-
return self.delete_pbx_audio_endpoint.call_with_http_info(**kwargs)
|
|
5153
|
-
|
|
5154
|
-
def delete_pbx_menu(
|
|
5155
|
-
self,
|
|
5156
|
-
conversation_pbx_menu_uuid,
|
|
5157
|
-
**kwargs
|
|
5158
|
-
):
|
|
5159
|
-
"""Delete pbx menu # noqa: E501
|
|
5160
|
-
|
|
5161
|
-
Delete a pbx menu # noqa: E501
|
|
5162
|
-
This method makes a synchronous HTTP request by default. To make an
|
|
5163
|
-
asynchronous HTTP request, please pass async_req=True
|
|
5164
|
-
|
|
5165
|
-
>>> thread = api.delete_pbx_menu(conversation_pbx_menu_uuid, async_req=True)
|
|
5166
|
-
>>> result = thread.get()
|
|
5167
|
-
|
|
5168
|
-
Args:
|
|
5169
|
-
conversation_pbx_menu_uuid (str):
|
|
5170
|
-
|
|
5171
|
-
Keyword Args:
|
|
5172
|
-
_return_http_data_only (bool): response data without head status
|
|
5173
|
-
code and headers. Default is True.
|
|
5174
|
-
_preload_content (bool): if False, the urllib3.HTTPResponse object
|
|
5175
|
-
will be returned without reading/decoding response data.
|
|
5176
|
-
Default is True.
|
|
5177
|
-
_request_timeout (int/float/tuple): timeout setting for this request. If
|
|
5178
|
-
one number provided, it will be total request timeout. It can also
|
|
5179
|
-
be a pair (tuple) of (connection, read) timeouts.
|
|
5180
|
-
Default is None.
|
|
5181
|
-
_check_input_type (bool): specifies if type checking
|
|
5182
|
-
should be done one the data sent to the server.
|
|
5183
|
-
Default is True.
|
|
5184
|
-
_check_return_type (bool): specifies if type checking
|
|
5185
|
-
should be done one the data received from the server.
|
|
5186
|
-
Default is True.
|
|
5187
|
-
_spec_property_naming (bool): True if the variable names in the input data
|
|
5188
|
-
are serialized names, as specified in the OpenAPI document.
|
|
5189
|
-
False if the variable names in the input data
|
|
5190
|
-
are pythonic names, e.g. snake case (default)
|
|
5191
|
-
_content_type (str/None): force body content-type.
|
|
5192
|
-
Default is None and content-type will be predicted by allowed
|
|
5193
|
-
content-types and body.
|
|
5194
|
-
_host_index (int/None): specifies the index of the server
|
|
5195
|
-
that we want to use.
|
|
5196
|
-
Default is read from the configuration.
|
|
5197
|
-
_request_auths (list): set to override the auth_settings for an a single
|
|
5198
|
-
request; this effectively ignores the authentication
|
|
5199
|
-
in the spec for a single request.
|
|
5200
|
-
Default is None
|
|
5201
|
-
async_req (bool): execute request asynchronously
|
|
5202
|
-
|
|
5203
|
-
Returns:
|
|
5204
|
-
ConversationPbxMenuResponse
|
|
4911
|
+
ConversationPbxMenuResponse
|
|
5205
4912
|
If the method is called asynchronously, returns the request
|
|
5206
4913
|
thread.
|
|
5207
4914
|
"""
|
|
@@ -5234,89 +4941,6 @@ class ConversationApi(object):
|
|
|
5234
4941
|
conversation_pbx_menu_uuid
|
|
5235
4942
|
return self.delete_pbx_menu_endpoint.call_with_http_info(**kwargs)
|
|
5236
4943
|
|
|
5237
|
-
def delete_pbx_phone_number(
|
|
5238
|
-
self,
|
|
5239
|
-
conversation_pbx_phone_number_uuid,
|
|
5240
|
-
**kwargs
|
|
5241
|
-
):
|
|
5242
|
-
"""Delete pbx phoneNumber # noqa: E501
|
|
5243
|
-
|
|
5244
|
-
Delete a pbx phoneNumber # noqa: E501
|
|
5245
|
-
This method makes a synchronous HTTP request by default. To make an
|
|
5246
|
-
asynchronous HTTP request, please pass async_req=True
|
|
5247
|
-
|
|
5248
|
-
>>> thread = api.delete_pbx_phone_number(conversation_pbx_phone_number_uuid, async_req=True)
|
|
5249
|
-
>>> result = thread.get()
|
|
5250
|
-
|
|
5251
|
-
Args:
|
|
5252
|
-
conversation_pbx_phone_number_uuid (str):
|
|
5253
|
-
|
|
5254
|
-
Keyword Args:
|
|
5255
|
-
_return_http_data_only (bool): response data without head status
|
|
5256
|
-
code and headers. Default is True.
|
|
5257
|
-
_preload_content (bool): if False, the urllib3.HTTPResponse object
|
|
5258
|
-
will be returned without reading/decoding response data.
|
|
5259
|
-
Default is True.
|
|
5260
|
-
_request_timeout (int/float/tuple): timeout setting for this request. If
|
|
5261
|
-
one number provided, it will be total request timeout. It can also
|
|
5262
|
-
be a pair (tuple) of (connection, read) timeouts.
|
|
5263
|
-
Default is None.
|
|
5264
|
-
_check_input_type (bool): specifies if type checking
|
|
5265
|
-
should be done one the data sent to the server.
|
|
5266
|
-
Default is True.
|
|
5267
|
-
_check_return_type (bool): specifies if type checking
|
|
5268
|
-
should be done one the data received from the server.
|
|
5269
|
-
Default is True.
|
|
5270
|
-
_spec_property_naming (bool): True if the variable names in the input data
|
|
5271
|
-
are serialized names, as specified in the OpenAPI document.
|
|
5272
|
-
False if the variable names in the input data
|
|
5273
|
-
are pythonic names, e.g. snake case (default)
|
|
5274
|
-
_content_type (str/None): force body content-type.
|
|
5275
|
-
Default is None and content-type will be predicted by allowed
|
|
5276
|
-
content-types and body.
|
|
5277
|
-
_host_index (int/None): specifies the index of the server
|
|
5278
|
-
that we want to use.
|
|
5279
|
-
Default is read from the configuration.
|
|
5280
|
-
_request_auths (list): set to override the auth_settings for an a single
|
|
5281
|
-
request; this effectively ignores the authentication
|
|
5282
|
-
in the spec for a single request.
|
|
5283
|
-
Default is None
|
|
5284
|
-
async_req (bool): execute request asynchronously
|
|
5285
|
-
|
|
5286
|
-
Returns:
|
|
5287
|
-
ConversationPbxPhoneNumberResponse
|
|
5288
|
-
If the method is called asynchronously, returns the request
|
|
5289
|
-
thread.
|
|
5290
|
-
"""
|
|
5291
|
-
kwargs['async_req'] = kwargs.get(
|
|
5292
|
-
'async_req', False
|
|
5293
|
-
)
|
|
5294
|
-
kwargs['_return_http_data_only'] = kwargs.get(
|
|
5295
|
-
'_return_http_data_only', True
|
|
5296
|
-
)
|
|
5297
|
-
kwargs['_preload_content'] = kwargs.get(
|
|
5298
|
-
'_preload_content', True
|
|
5299
|
-
)
|
|
5300
|
-
kwargs['_request_timeout'] = kwargs.get(
|
|
5301
|
-
'_request_timeout', None
|
|
5302
|
-
)
|
|
5303
|
-
kwargs['_check_input_type'] = kwargs.get(
|
|
5304
|
-
'_check_input_type', True
|
|
5305
|
-
)
|
|
5306
|
-
kwargs['_check_return_type'] = kwargs.get(
|
|
5307
|
-
'_check_return_type', True
|
|
5308
|
-
)
|
|
5309
|
-
kwargs['_spec_property_naming'] = kwargs.get(
|
|
5310
|
-
'_spec_property_naming', False
|
|
5311
|
-
)
|
|
5312
|
-
kwargs['_content_type'] = kwargs.get(
|
|
5313
|
-
'_content_type')
|
|
5314
|
-
kwargs['_host_index'] = kwargs.get('_host_index')
|
|
5315
|
-
kwargs['_request_auths'] = kwargs.get('_request_auths', None)
|
|
5316
|
-
kwargs['conversation_pbx_phone_number_uuid'] = \
|
|
5317
|
-
conversation_pbx_phone_number_uuid
|
|
5318
|
-
return self.delete_pbx_phone_number_endpoint.call_with_http_info(**kwargs)
|
|
5319
|
-
|
|
5320
4944
|
def delete_pbx_queue(
|
|
5321
4945
|
self,
|
|
5322
4946
|
conversation_pbx_queue_uuid,
|
|
@@ -9302,89 +8926,6 @@ class ConversationApi(object):
|
|
|
9302
8926
|
engagement
|
|
9303
8927
|
return self.insert_conversation_engagement_endpoint.call_with_http_info(**kwargs)
|
|
9304
8928
|
|
|
9305
|
-
def insert_pbx_agent(
|
|
9306
|
-
self,
|
|
9307
|
-
pbx_agent,
|
|
9308
|
-
**kwargs
|
|
9309
|
-
):
|
|
9310
|
-
"""Insert pbx agent # noqa: E501
|
|
9311
|
-
|
|
9312
|
-
Insert a pbx agent # noqa: E501
|
|
9313
|
-
This method makes a synchronous HTTP request by default. To make an
|
|
9314
|
-
asynchronous HTTP request, please pass async_req=True
|
|
9315
|
-
|
|
9316
|
-
>>> thread = api.insert_pbx_agent(pbx_agent, async_req=True)
|
|
9317
|
-
>>> result = thread.get()
|
|
9318
|
-
|
|
9319
|
-
Args:
|
|
9320
|
-
pbx_agent (ConversationPbxAgent): Pbx Agent
|
|
9321
|
-
|
|
9322
|
-
Keyword Args:
|
|
9323
|
-
_return_http_data_only (bool): response data without head status
|
|
9324
|
-
code and headers. Default is True.
|
|
9325
|
-
_preload_content (bool): if False, the urllib3.HTTPResponse object
|
|
9326
|
-
will be returned without reading/decoding response data.
|
|
9327
|
-
Default is True.
|
|
9328
|
-
_request_timeout (int/float/tuple): timeout setting for this request. If
|
|
9329
|
-
one number provided, it will be total request timeout. It can also
|
|
9330
|
-
be a pair (tuple) of (connection, read) timeouts.
|
|
9331
|
-
Default is None.
|
|
9332
|
-
_check_input_type (bool): specifies if type checking
|
|
9333
|
-
should be done one the data sent to the server.
|
|
9334
|
-
Default is True.
|
|
9335
|
-
_check_return_type (bool): specifies if type checking
|
|
9336
|
-
should be done one the data received from the server.
|
|
9337
|
-
Default is True.
|
|
9338
|
-
_spec_property_naming (bool): True if the variable names in the input data
|
|
9339
|
-
are serialized names, as specified in the OpenAPI document.
|
|
9340
|
-
False if the variable names in the input data
|
|
9341
|
-
are pythonic names, e.g. snake case (default)
|
|
9342
|
-
_content_type (str/None): force body content-type.
|
|
9343
|
-
Default is None and content-type will be predicted by allowed
|
|
9344
|
-
content-types and body.
|
|
9345
|
-
_host_index (int/None): specifies the index of the server
|
|
9346
|
-
that we want to use.
|
|
9347
|
-
Default is read from the configuration.
|
|
9348
|
-
_request_auths (list): set to override the auth_settings for an a single
|
|
9349
|
-
request; this effectively ignores the authentication
|
|
9350
|
-
in the spec for a single request.
|
|
9351
|
-
Default is None
|
|
9352
|
-
async_req (bool): execute request asynchronously
|
|
9353
|
-
|
|
9354
|
-
Returns:
|
|
9355
|
-
ConversationPbxAgentResponse
|
|
9356
|
-
If the method is called asynchronously, returns the request
|
|
9357
|
-
thread.
|
|
9358
|
-
"""
|
|
9359
|
-
kwargs['async_req'] = kwargs.get(
|
|
9360
|
-
'async_req', False
|
|
9361
|
-
)
|
|
9362
|
-
kwargs['_return_http_data_only'] = kwargs.get(
|
|
9363
|
-
'_return_http_data_only', True
|
|
9364
|
-
)
|
|
9365
|
-
kwargs['_preload_content'] = kwargs.get(
|
|
9366
|
-
'_preload_content', True
|
|
9367
|
-
)
|
|
9368
|
-
kwargs['_request_timeout'] = kwargs.get(
|
|
9369
|
-
'_request_timeout', None
|
|
9370
|
-
)
|
|
9371
|
-
kwargs['_check_input_type'] = kwargs.get(
|
|
9372
|
-
'_check_input_type', True
|
|
9373
|
-
)
|
|
9374
|
-
kwargs['_check_return_type'] = kwargs.get(
|
|
9375
|
-
'_check_return_type', True
|
|
9376
|
-
)
|
|
9377
|
-
kwargs['_spec_property_naming'] = kwargs.get(
|
|
9378
|
-
'_spec_property_naming', False
|
|
9379
|
-
)
|
|
9380
|
-
kwargs['_content_type'] = kwargs.get(
|
|
9381
|
-
'_content_type')
|
|
9382
|
-
kwargs['_host_index'] = kwargs.get('_host_index')
|
|
9383
|
-
kwargs['_request_auths'] = kwargs.get('_request_auths', None)
|
|
9384
|
-
kwargs['pbx_agent'] = \
|
|
9385
|
-
pbx_agent
|
|
9386
|
-
return self.insert_pbx_agent_endpoint.call_with_http_info(**kwargs)
|
|
9387
|
-
|
|
9388
8929
|
def insert_pbx_audio(
|
|
9389
8930
|
self,
|
|
9390
8931
|
pbx_audio,
|
|
@@ -9551,89 +9092,6 @@ class ConversationApi(object):
|
|
|
9551
9092
|
pbx_menu
|
|
9552
9093
|
return self.insert_pbx_menu_endpoint.call_with_http_info(**kwargs)
|
|
9553
9094
|
|
|
9554
|
-
def insert_pbx_phone_number(
|
|
9555
|
-
self,
|
|
9556
|
-
pbx_phone_number,
|
|
9557
|
-
**kwargs
|
|
9558
|
-
):
|
|
9559
|
-
"""Insert pbx phoneNumber # noqa: E501
|
|
9560
|
-
|
|
9561
|
-
Insert a pbx phoneNumber # noqa: E501
|
|
9562
|
-
This method makes a synchronous HTTP request by default. To make an
|
|
9563
|
-
asynchronous HTTP request, please pass async_req=True
|
|
9564
|
-
|
|
9565
|
-
>>> thread = api.insert_pbx_phone_number(pbx_phone_number, async_req=True)
|
|
9566
|
-
>>> result = thread.get()
|
|
9567
|
-
|
|
9568
|
-
Args:
|
|
9569
|
-
pbx_phone_number (ConversationPbxPhoneNumber): Pbx PhoneNumber
|
|
9570
|
-
|
|
9571
|
-
Keyword Args:
|
|
9572
|
-
_return_http_data_only (bool): response data without head status
|
|
9573
|
-
code and headers. Default is True.
|
|
9574
|
-
_preload_content (bool): if False, the urllib3.HTTPResponse object
|
|
9575
|
-
will be returned without reading/decoding response data.
|
|
9576
|
-
Default is True.
|
|
9577
|
-
_request_timeout (int/float/tuple): timeout setting for this request. If
|
|
9578
|
-
one number provided, it will be total request timeout. It can also
|
|
9579
|
-
be a pair (tuple) of (connection, read) timeouts.
|
|
9580
|
-
Default is None.
|
|
9581
|
-
_check_input_type (bool): specifies if type checking
|
|
9582
|
-
should be done one the data sent to the server.
|
|
9583
|
-
Default is True.
|
|
9584
|
-
_check_return_type (bool): specifies if type checking
|
|
9585
|
-
should be done one the data received from the server.
|
|
9586
|
-
Default is True.
|
|
9587
|
-
_spec_property_naming (bool): True if the variable names in the input data
|
|
9588
|
-
are serialized names, as specified in the OpenAPI document.
|
|
9589
|
-
False if the variable names in the input data
|
|
9590
|
-
are pythonic names, e.g. snake case (default)
|
|
9591
|
-
_content_type (str/None): force body content-type.
|
|
9592
|
-
Default is None and content-type will be predicted by allowed
|
|
9593
|
-
content-types and body.
|
|
9594
|
-
_host_index (int/None): specifies the index of the server
|
|
9595
|
-
that we want to use.
|
|
9596
|
-
Default is read from the configuration.
|
|
9597
|
-
_request_auths (list): set to override the auth_settings for an a single
|
|
9598
|
-
request; this effectively ignores the authentication
|
|
9599
|
-
in the spec for a single request.
|
|
9600
|
-
Default is None
|
|
9601
|
-
async_req (bool): execute request asynchronously
|
|
9602
|
-
|
|
9603
|
-
Returns:
|
|
9604
|
-
ConversationPbxPhoneNumberResponse
|
|
9605
|
-
If the method is called asynchronously, returns the request
|
|
9606
|
-
thread.
|
|
9607
|
-
"""
|
|
9608
|
-
kwargs['async_req'] = kwargs.get(
|
|
9609
|
-
'async_req', False
|
|
9610
|
-
)
|
|
9611
|
-
kwargs['_return_http_data_only'] = kwargs.get(
|
|
9612
|
-
'_return_http_data_only', True
|
|
9613
|
-
)
|
|
9614
|
-
kwargs['_preload_content'] = kwargs.get(
|
|
9615
|
-
'_preload_content', True
|
|
9616
|
-
)
|
|
9617
|
-
kwargs['_request_timeout'] = kwargs.get(
|
|
9618
|
-
'_request_timeout', None
|
|
9619
|
-
)
|
|
9620
|
-
kwargs['_check_input_type'] = kwargs.get(
|
|
9621
|
-
'_check_input_type', True
|
|
9622
|
-
)
|
|
9623
|
-
kwargs['_check_return_type'] = kwargs.get(
|
|
9624
|
-
'_check_return_type', True
|
|
9625
|
-
)
|
|
9626
|
-
kwargs['_spec_property_naming'] = kwargs.get(
|
|
9627
|
-
'_spec_property_naming', False
|
|
9628
|
-
)
|
|
9629
|
-
kwargs['_content_type'] = kwargs.get(
|
|
9630
|
-
'_content_type')
|
|
9631
|
-
kwargs['_host_index'] = kwargs.get('_host_index')
|
|
9632
|
-
kwargs['_request_auths'] = kwargs.get('_request_auths', None)
|
|
9633
|
-
kwargs['pbx_phone_number'] = \
|
|
9634
|
-
pbx_phone_number
|
|
9635
|
-
return self.insert_pbx_phone_number_endpoint.call_with_http_info(**kwargs)
|
|
9636
|
-
|
|
9637
9095
|
def insert_pbx_queue(
|
|
9638
9096
|
self,
|
|
9639
9097
|
pbx_queue,
|
ultracart/api_client.py
CHANGED
|
@@ -77,7 +77,7 @@ class ApiClient(object):
|
|
|
77
77
|
self.default_headers[header_name] = header_value
|
|
78
78
|
self.cookie = cookie
|
|
79
79
|
# Set default User-Agent.
|
|
80
|
-
self.user_agent = 'OpenAPI-Generator/4.0.
|
|
80
|
+
self.user_agent = 'OpenAPI-Generator/4.0.220/python'
|
|
81
81
|
|
|
82
82
|
def __enter__(self):
|
|
83
83
|
return self
|
ultracart/configuration.py
CHANGED
|
@@ -422,7 +422,7 @@ conf = ultracart.Configuration(
|
|
|
422
422
|
"OS: {env}\n"\
|
|
423
423
|
"Python Version: {pyversion}\n"\
|
|
424
424
|
"Version of the API: 2.0.0\n"\
|
|
425
|
-
"SDK Package Version: 4.0.
|
|
425
|
+
"SDK Package Version: 4.0.220".\
|
|
426
426
|
format(env=sys.platform, pyversion=sys.version)
|
|
427
427
|
|
|
428
428
|
def get_host_settings(self):
|
|
@@ -71,6 +71,12 @@ class ConversationPbxAgent(ModelNormal):
|
|
|
71
71
|
('twilio_taskrouter_worker_id',): {
|
|
72
72
|
'max_length': 100,
|
|
73
73
|
},
|
|
74
|
+
('unavailable_play_audio_uuid',): {
|
|
75
|
+
'max_length': 50,
|
|
76
|
+
},
|
|
77
|
+
('unavailable_say_voice',): {
|
|
78
|
+
'max_length': 50,
|
|
79
|
+
},
|
|
74
80
|
}
|
|
75
81
|
|
|
76
82
|
@cached_property
|
|
@@ -97,10 +103,16 @@ class ConversationPbxAgent(ModelNormal):
|
|
|
97
103
|
'cellphone': (str,), # noqa: E501
|
|
98
104
|
'conversation_pbx_agent_uuid': (str,), # noqa: E501
|
|
99
105
|
'conversation_pbx_voicemail_mailbox_uuid': (str,), # noqa: E501
|
|
106
|
+
'extension': (int,), # noqa: E501
|
|
100
107
|
'forward_calls_to_cellphone': (bool,), # noqa: E501
|
|
108
|
+
'full_name': (str,), # noqa: E501
|
|
109
|
+
'login': (str,), # noqa: E501
|
|
101
110
|
'merchant_id': (str,), # noqa: E501
|
|
102
111
|
'record_outgoing_automatically': (bool,), # noqa: E501
|
|
103
112
|
'twilio_taskrouter_worker_id': (str,), # noqa: E501
|
|
113
|
+
'unavailable_play_audio_uuid': (str,), # noqa: E501
|
|
114
|
+
'unavailable_say': (str,), # noqa: E501
|
|
115
|
+
'unavailable_say_voice': (str,), # noqa: E501
|
|
104
116
|
'user_id': (int,), # noqa: E501
|
|
105
117
|
'voicemail': (bool,), # noqa: E501
|
|
106
118
|
}
|
|
@@ -114,10 +126,16 @@ class ConversationPbxAgent(ModelNormal):
|
|
|
114
126
|
'cellphone': 'cellphone', # noqa: E501
|
|
115
127
|
'conversation_pbx_agent_uuid': 'conversation_pbx_agent_uuid', # noqa: E501
|
|
116
128
|
'conversation_pbx_voicemail_mailbox_uuid': 'conversation_pbx_voicemail_mailbox_uuid', # noqa: E501
|
|
129
|
+
'extension': 'extension', # noqa: E501
|
|
117
130
|
'forward_calls_to_cellphone': 'forward_calls_to_cellphone', # noqa: E501
|
|
131
|
+
'full_name': 'full_name', # noqa: E501
|
|
132
|
+
'login': 'login', # noqa: E501
|
|
118
133
|
'merchant_id': 'merchant_id', # noqa: E501
|
|
119
134
|
'record_outgoing_automatically': 'record_outgoing_automatically', # noqa: E501
|
|
120
135
|
'twilio_taskrouter_worker_id': 'twilio_taskrouter_worker_id', # noqa: E501
|
|
136
|
+
'unavailable_play_audio_uuid': 'unavailable_play_audio_uuid', # noqa: E501
|
|
137
|
+
'unavailable_say': 'unavailable_say', # noqa: E501
|
|
138
|
+
'unavailable_say_voice': 'unavailable_say_voice', # noqa: E501
|
|
121
139
|
'user_id': 'user_id', # noqa: E501
|
|
122
140
|
'voicemail': 'voicemail', # noqa: E501
|
|
123
141
|
}
|
|
@@ -166,10 +184,16 @@ class ConversationPbxAgent(ModelNormal):
|
|
|
166
184
|
cellphone (str): Cellphone number of agent in E.164 format. [optional] # noqa: E501
|
|
167
185
|
conversation_pbx_agent_uuid (str): Conversation Pbx Agent unique identifier. [optional] # noqa: E501
|
|
168
186
|
conversation_pbx_voicemail_mailbox_uuid (str): Conversation Pbx Voicemail Mailbox UUID. [optional] # noqa: E501
|
|
187
|
+
extension (int): Extension. [optional] # noqa: E501
|
|
169
188
|
forward_calls_to_cellphone (bool): True if calls to this agent should be forwarded to their cellphone. [optional] # noqa: E501
|
|
189
|
+
full_name (str): Full name. [optional] # noqa: E501
|
|
190
|
+
login (str): Agent login. [optional] # noqa: E501
|
|
170
191
|
merchant_id (str): Merchant Id. [optional] # noqa: E501
|
|
171
192
|
record_outgoing_automatically (bool): True if outgoing calls should be automatically recorded. [optional] # noqa: E501
|
|
172
193
|
twilio_taskrouter_worker_id (str): Twilio taskrouter worker Id. [optional] # noqa: E501
|
|
194
|
+
unavailable_play_audio_uuid (str): Unavailable play audio UUID. [optional] # noqa: E501
|
|
195
|
+
unavailable_say (str): Unavailable say. [optional] # noqa: E501
|
|
196
|
+
unavailable_say_voice (str): Unavailable say voice. [optional] # noqa: E501
|
|
173
197
|
user_id (int): User Id. [optional] # noqa: E501
|
|
174
198
|
voicemail (bool): True if this agent has voicemail configured. [optional] # noqa: E501
|
|
175
199
|
"""
|
|
@@ -260,10 +284,16 @@ class ConversationPbxAgent(ModelNormal):
|
|
|
260
284
|
cellphone (str): Cellphone number of agent in E.164 format. [optional] # noqa: E501
|
|
261
285
|
conversation_pbx_agent_uuid (str): Conversation Pbx Agent unique identifier. [optional] # noqa: E501
|
|
262
286
|
conversation_pbx_voicemail_mailbox_uuid (str): Conversation Pbx Voicemail Mailbox UUID. [optional] # noqa: E501
|
|
287
|
+
extension (int): Extension. [optional] # noqa: E501
|
|
263
288
|
forward_calls_to_cellphone (bool): True if calls to this agent should be forwarded to their cellphone. [optional] # noqa: E501
|
|
289
|
+
full_name (str): Full name. [optional] # noqa: E501
|
|
290
|
+
login (str): Agent login. [optional] # noqa: E501
|
|
264
291
|
merchant_id (str): Merchant Id. [optional] # noqa: E501
|
|
265
292
|
record_outgoing_automatically (bool): True if outgoing calls should be automatically recorded. [optional] # noqa: E501
|
|
266
293
|
twilio_taskrouter_worker_id (str): Twilio taskrouter worker Id. [optional] # noqa: E501
|
|
294
|
+
unavailable_play_audio_uuid (str): Unavailable play audio UUID. [optional] # noqa: E501
|
|
295
|
+
unavailable_say (str): Unavailable say. [optional] # noqa: E501
|
|
296
|
+
unavailable_say_voice (str): Unavailable say voice. [optional] # noqa: E501
|
|
267
297
|
user_id (int): User Id. [optional] # noqa: E501
|
|
268
298
|
voicemail (bool): True if this agent has voicemail configured. [optional] # noqa: E501
|
|
269
299
|
"""
|
|
@@ -72,7 +72,10 @@ class ConversationPbxVoicemailMailbox(ModelNormal):
|
|
|
72
72
|
('send_notices_to_email',): {
|
|
73
73
|
'max_length': 250,
|
|
74
74
|
},
|
|
75
|
-
('
|
|
75
|
+
('voicemail_followup_play_audio_uuid',): {
|
|
76
|
+
'max_length': 50,
|
|
77
|
+
},
|
|
78
|
+
('voicemail_followup_say_voice',): {
|
|
76
79
|
'max_length': 50,
|
|
77
80
|
},
|
|
78
81
|
('voicemail_mailbox_id',): {
|
|
@@ -84,7 +87,7 @@ class ConversationPbxVoicemailMailbox(ModelNormal):
|
|
|
84
87
|
('voicemail_prompt_play_audio_uuid',): {
|
|
85
88
|
'max_length': 50,
|
|
86
89
|
},
|
|
87
|
-
('
|
|
90
|
+
('voicemail_prompt_say_voice',): {
|
|
88
91
|
'max_length': 50,
|
|
89
92
|
},
|
|
90
93
|
}
|
|
@@ -114,13 +117,14 @@ class ConversationPbxVoicemailMailbox(ModelNormal):
|
|
|
114
117
|
'merchant_id': (str,), # noqa: E501
|
|
115
118
|
'send_notices_to_email': (str,), # noqa: E501
|
|
116
119
|
'user_id': (int,), # noqa: E501
|
|
117
|
-
'
|
|
120
|
+
'voicemail_followup_play_audio_uuid': (str,), # noqa: E501
|
|
118
121
|
'voicemail_followup_say': (str,), # noqa: E501
|
|
122
|
+
'voicemail_followup_say_voice': (str,), # noqa: E501
|
|
119
123
|
'voicemail_mailbox_id': (str,), # noqa: E501
|
|
120
124
|
'voicemail_mailbox_type': (str,), # noqa: E501
|
|
121
125
|
'voicemail_prompt_play_audio_uuid': (str,), # noqa: E501
|
|
122
126
|
'voicemail_prompt_say': (str,), # noqa: E501
|
|
123
|
-
'
|
|
127
|
+
'voicemail_prompt_say_voice': (str,), # noqa: E501
|
|
124
128
|
}
|
|
125
129
|
|
|
126
130
|
@cached_property
|
|
@@ -133,13 +137,14 @@ class ConversationPbxVoicemailMailbox(ModelNormal):
|
|
|
133
137
|
'merchant_id': 'merchant_id', # noqa: E501
|
|
134
138
|
'send_notices_to_email': 'send_notices_to_email', # noqa: E501
|
|
135
139
|
'user_id': 'user_id', # noqa: E501
|
|
136
|
-
'
|
|
140
|
+
'voicemail_followup_play_audio_uuid': 'voicemail_followup_play_audio_uuid', # noqa: E501
|
|
137
141
|
'voicemail_followup_say': 'voicemail_followup_say', # noqa: E501
|
|
142
|
+
'voicemail_followup_say_voice': 'voicemail_followup_say_voice', # noqa: E501
|
|
138
143
|
'voicemail_mailbox_id': 'voicemail_mailbox_id', # noqa: E501
|
|
139
144
|
'voicemail_mailbox_type': 'voicemail_mailbox_type', # noqa: E501
|
|
140
145
|
'voicemail_prompt_play_audio_uuid': 'voicemail_prompt_play_audio_uuid', # noqa: E501
|
|
141
146
|
'voicemail_prompt_say': 'voicemail_prompt_say', # noqa: E501
|
|
142
|
-
'
|
|
147
|
+
'voicemail_prompt_say_voice': 'voicemail_prompt_say_voice', # noqa: E501
|
|
143
148
|
}
|
|
144
149
|
|
|
145
150
|
read_only_vars = {
|
|
@@ -187,13 +192,14 @@ class ConversationPbxVoicemailMailbox(ModelNormal):
|
|
|
187
192
|
merchant_id (str): Merchant Id. [optional] # noqa: E501
|
|
188
193
|
send_notices_to_email (str): Send notices to email. [optional] # noqa: E501
|
|
189
194
|
user_id (int): User Id. [optional] # noqa: E501
|
|
190
|
-
|
|
195
|
+
voicemail_followup_play_audio_uuid (str): Voicemail follow play audio UUID. [optional] # noqa: E501
|
|
191
196
|
voicemail_followup_say (str): Voicemail followup say. [optional] # noqa: E501
|
|
197
|
+
voicemail_followup_say_voice (str): Voicemail followup say voice. [optional] # noqa: E501
|
|
192
198
|
voicemail_mailbox_id (str): Voicemail mailbox id. [optional] # noqa: E501
|
|
193
199
|
voicemail_mailbox_type (str): Voicemail mailbox type. [optional] # noqa: E501
|
|
194
200
|
voicemail_prompt_play_audio_uuid (str): Voicemail prompt play audio UUID. [optional] # noqa: E501
|
|
195
201
|
voicemail_prompt_say (str): Voicemail prompt say. [optional] # noqa: E501
|
|
196
|
-
|
|
202
|
+
voicemail_prompt_say_voice (str): Voicemail prompt say voice. [optional] # noqa: E501
|
|
197
203
|
"""
|
|
198
204
|
|
|
199
205
|
_check_type = kwargs.pop('_check_type', True)
|
|
@@ -283,13 +289,14 @@ class ConversationPbxVoicemailMailbox(ModelNormal):
|
|
|
283
289
|
merchant_id (str): Merchant Id. [optional] # noqa: E501
|
|
284
290
|
send_notices_to_email (str): Send notices to email. [optional] # noqa: E501
|
|
285
291
|
user_id (int): User Id. [optional] # noqa: E501
|
|
286
|
-
|
|
292
|
+
voicemail_followup_play_audio_uuid (str): Voicemail follow play audio UUID. [optional] # noqa: E501
|
|
287
293
|
voicemail_followup_say (str): Voicemail followup say. [optional] # noqa: E501
|
|
294
|
+
voicemail_followup_say_voice (str): Voicemail followup say voice. [optional] # noqa: E501
|
|
288
295
|
voicemail_mailbox_id (str): Voicemail mailbox id. [optional] # noqa: E501
|
|
289
296
|
voicemail_mailbox_type (str): Voicemail mailbox type. [optional] # noqa: E501
|
|
290
297
|
voicemail_prompt_play_audio_uuid (str): Voicemail prompt play audio UUID. [optional] # noqa: E501
|
|
291
298
|
voicemail_prompt_say (str): Voicemail prompt say. [optional] # noqa: E501
|
|
292
|
-
|
|
299
|
+
voicemail_prompt_say_voice (str): Voicemail prompt say voice. [optional] # noqa: E501
|
|
293
300
|
"""
|
|
294
301
|
|
|
295
302
|
_check_type = kwargs.pop('_check_type', True)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
ultracart/__init__.py,sha256=
|
|
2
|
-
ultracart/api_client.py,sha256=
|
|
3
|
-
ultracart/configuration.py,sha256=
|
|
1
|
+
ultracart/__init__.py,sha256=GmGJdQxEiVY90J_moWNcPBbexx6yoIrziAEeUTh5Qd0,699
|
|
2
|
+
ultracart/api_client.py,sha256=RUoUqY8WKDOLagm3syrd_hwYCATZG24jSVs2ttO_pHU,39072
|
|
3
|
+
ultracart/configuration.py,sha256=wx2b8NDMuIln6dvurwi0PDivUsH30Xn_ST1p9PfAubE,17842
|
|
4
4
|
ultracart/exceptions.py,sha256=dwRtrWJsW4H_jKk3B1w2chykcQ7E2FSlhftUByD9e9E,5069
|
|
5
5
|
ultracart/model_utils.py,sha256=X_RAfA-TlvDKBICnIve7PPVDM34Nl58aV1bqCrVmoTo,82574
|
|
6
6
|
ultracart/rest.py,sha256=2lM6zwrjGp_SjkddamoKdpk3jFuc8Ow7fKIXRdKNp24,14268
|
|
@@ -10,7 +10,7 @@ ultracart/api/auto_order_api.py,sha256=PrBsBkt6uneTf07QHlF5kipjzGlbT44LMOP5pthc6
|
|
|
10
10
|
ultracart/api/channel_partner_api.py,sha256=aPduqNAS8wcwqS9hC0bnZktMFCBd90S6lz9265-v3JU,63965
|
|
11
11
|
ultracart/api/chargeback_api.py,sha256=bC5LfbV1DuVMZhfCvkkog33VACDVk7W74JvlaXy5Nuc,32295
|
|
12
12
|
ultracart/api/checkout_api.py,sha256=KLZAsTMiY55AHDhubbNZYipBPGwihQbEsLDjIDzkLkQ,105889
|
|
13
|
-
ultracart/api/conversation_api.py,sha256=
|
|
13
|
+
ultracart/api/conversation_api.py,sha256=fwFvhCeMBGguLqXHZQF1UsKxIzgsCfrKPGDDOKl-llM,442575
|
|
14
14
|
ultracart/api/coupon_api.py,sha256=voBpCzDhuBog_0WKSj9J-2zKSI8LyJINjUneeLAwlHg,109039
|
|
15
15
|
ultracart/api/customer_api.py,sha256=I9skXHJZw9asr5LnRnE3vbVNMadjLm_2bDrNhr-mnfg,146498
|
|
16
16
|
ultracart/api/datawarehouse_api.py,sha256=4UdypzYNcDwgHeyWqK1x6WARC62u9CmbfVTGhryOq5I,52975
|
|
@@ -197,7 +197,7 @@ ultracart/model/conversation_messages_response.py,sha256=wKaD-ZyZz4PGDSRUw-cDmZ3
|
|
|
197
197
|
ultracart/model/conversation_multimedia_upload_url.py,sha256=b83yz8vwDJCcmrlnzKrMmoIzWV85YXc9JvigpxpRchc,11610
|
|
198
198
|
ultracart/model/conversation_multimedia_upload_url_response.py,sha256=I9GW0IiHrN8XbkV9-m9RvJI9QE39EHmGoXxei_LQ-DY,13127
|
|
199
199
|
ultracart/model/conversation_participant.py,sha256=AL9wPJxm2TozPN31HbUisIv6AhvTL6DqPuG5VIqY7_4,14482
|
|
200
|
-
ultracart/model/conversation_pbx_agent.py,sha256=
|
|
200
|
+
ultracart/model/conversation_pbx_agent.py,sha256=SQxSf0o9kvD9eQzlmgVBM8_Txsyu-ic2UsYj3wvPwXg,16344
|
|
201
201
|
ultracart/model/conversation_pbx_agent_response.py,sha256=ExYxi_fMSjPzyaBA1U9OODt0Ktn8DSMHlRFiq8vfQ04,12871
|
|
202
202
|
ultracart/model/conversation_pbx_agents_response.py,sha256=DsJzAkoq_3y8maXw3rlGTfshJnZK9gG0sdVO5WnFjTQ,12885
|
|
203
203
|
ultracart/model/conversation_pbx_audio.py,sha256=0SF54E2KA7HeOb8szFIeydhTuilStBu7cbE3A0GX_JA,14218
|
|
@@ -228,7 +228,7 @@ ultracart/model/conversation_pbx_time_range.py,sha256=ATh0Uy99whFNo2QaWOOwLMufvr
|
|
|
228
228
|
ultracart/model/conversation_pbx_time_range_config.py,sha256=dkfz0zeN3DyOI9KjlEwycGdl6syvClBrJB1vM1J0KjU,12709
|
|
229
229
|
ultracart/model/conversation_pbx_time_range_response.py,sha256=Y_b5Z6AHw_-LE7v5nDTHVIDYzkVqcDBwrJx2JQME1yY,12937
|
|
230
230
|
ultracart/model/conversation_pbx_time_ranges_response.py,sha256=BEzjr2Jz-m_n_0P20nHLDug1H0i1K2L58ROqF-6P9ys,12951
|
|
231
|
-
ultracart/model/conversation_pbx_voicemail_mailbox.py,sha256=
|
|
231
|
+
ultracart/model/conversation_pbx_voicemail_mailbox.py,sha256=xPZ9LyJLKnyNReXSVRHhCrZGmalfC4ge47f9SV6sqDg,16045
|
|
232
232
|
ultracart/model/conversation_pbx_voicemail_mailbox_response.py,sha256=XQrcrz8AmgBKFNe0kIVFhDEJilRVMKx3k8TTRHgEArE,13042
|
|
233
233
|
ultracart/model/conversation_pbx_voicemail_mailboxes_response.py,sha256=2xuNY5oA3mOEFID3CYJwpsEVCjVpfZ4mf9cxuaB6OiU,13064
|
|
234
234
|
ultracart/model/conversation_pbx_voicemail_message.py,sha256=FO6FKxd-_85HyX9JR4ELDog4vERjKylHs_5DJv7z1z4,15025
|
|
@@ -877,8 +877,8 @@ ultracart/model/workflow_user.py,sha256=gkQIeMSIhawpz5wtpTJ8Lof_Td0IrwG0KZF6catE
|
|
|
877
877
|
ultracart/model/workflow_user_response.py,sha256=TKfMu5vF1fXlV8mvxRFhvk6WNdGce2T8a4vFycQvuhQ,12785
|
|
878
878
|
ultracart/model/workflow_users_response.py,sha256=3Y7L1oHc2-HOvl1pDdcnl9xHKYLGblKpKdbkPBh2u68,13059
|
|
879
879
|
ultracart/models/__init__.py,sha256=0VZcMHj-u6Zc6EOw-mQH_PPHT2FtR1T1Lzjalm0RbLI,65370
|
|
880
|
-
ultracart_rest_sdk-4.0.
|
|
881
|
-
ultracart_rest_sdk-4.0.
|
|
882
|
-
ultracart_rest_sdk-4.0.
|
|
883
|
-
ultracart_rest_sdk-4.0.
|
|
884
|
-
ultracart_rest_sdk-4.0.
|
|
880
|
+
ultracart_rest_sdk-4.0.220.dist-info/LICENSE,sha256=4DukHX-rIHAHaf5BGLq1DYAMt0-ZA1OgXS9f_xwig2M,11558
|
|
881
|
+
ultracart_rest_sdk-4.0.220.dist-info/METADATA,sha256=BinYDHpG-bPMnFkrQbAUAW5fdx3WDAUaMWpMdxlAADU,403
|
|
882
|
+
ultracart_rest_sdk-4.0.220.dist-info/WHEEL,sha256=OqRkF0eY5GHssMorFjlbTIq072vpHpF60fIQA6lS9xA,92
|
|
883
|
+
ultracart_rest_sdk-4.0.220.dist-info/top_level.txt,sha256=90IoRqV6KX58jTyx9MwEBqh4j38_10hWrrvqsmXWZYo,10
|
|
884
|
+
ultracart_rest_sdk-4.0.220.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|