ultracart-rest-sdk 4.0.213__py3-none-any.whl → 4.0.215__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 +136 -0
- ultracart/api_client.py +1 -1
- ultracart/configuration.py +1 -1
- ultracart/model/channel_partner_order.py +49 -0
- ultracart/model/conversation_pbx_audio.py +4 -0
- ultracart/model/conversation_pbx_audio_usage_response.py +304 -0
- ultracart/model/order_utm.py +24 -0
- ultracart/models/__init__.py +1 -0
- {ultracart_rest_sdk-4.0.213.dist-info → ultracart_rest_sdk-4.0.215.dist-info}/METADATA +1 -1
- {ultracart_rest_sdk-4.0.213.dist-info → ultracart_rest_sdk-4.0.215.dist-info}/RECORD +14 -13
- {ultracart_rest_sdk-4.0.213.dist-info → ultracart_rest_sdk-4.0.215.dist-info}/LICENSE +0 -0
- {ultracart_rest_sdk-4.0.213.dist-info → ultracart_rest_sdk-4.0.215.dist-info}/WHEEL +0 -0
- {ultracart_rest_sdk-4.0.213.dist-info → ultracart_rest_sdk-4.0.215.dist-info}/top_level.txt +0 -0
ultracart/__init__.py
CHANGED
|
@@ -48,6 +48,7 @@ from ultracart.model.conversation_pbx_agents_response import ConversationPbxAgen
|
|
|
48
48
|
from ultracart.model.conversation_pbx_audio import ConversationPbxAudio
|
|
49
49
|
from ultracart.model.conversation_pbx_audio_response import ConversationPbxAudioResponse
|
|
50
50
|
from ultracart.model.conversation_pbx_audio_upload_url_response import ConversationPbxAudioUploadUrlResponse
|
|
51
|
+
from ultracart.model.conversation_pbx_audio_usage_response import ConversationPbxAudioUsageResponse
|
|
51
52
|
from ultracart.model.conversation_pbx_audios_response import ConversationPbxAudiosResponse
|
|
52
53
|
from ultracart.model.conversation_pbx_customer_snapshot_request import ConversationPbxCustomerSnapshotRequest
|
|
53
54
|
from ultracart.model.conversation_pbx_customer_snapshot_response import ConversationPbxCustomerSnapshotResponse
|
|
@@ -2036,6 +2037,58 @@ class ConversationApi(object):
|
|
|
2036
2037
|
},
|
|
2037
2038
|
api_client=api_client
|
|
2038
2039
|
)
|
|
2040
|
+
self.get_pbx_audio_usage_endpoint = _Endpoint(
|
|
2041
|
+
settings={
|
|
2042
|
+
'response_type': (ConversationPbxAudioUsageResponse,),
|
|
2043
|
+
'auth': [
|
|
2044
|
+
'ultraCartOauth',
|
|
2045
|
+
'ultraCartSimpleApiKey'
|
|
2046
|
+
],
|
|
2047
|
+
'endpoint_path': '/conversation/pbx/audio/{conversationPbxAudioUuid}/usage',
|
|
2048
|
+
'operation_id': 'get_pbx_audio_usage',
|
|
2049
|
+
'http_method': 'GET',
|
|
2050
|
+
'servers': None,
|
|
2051
|
+
},
|
|
2052
|
+
params_map={
|
|
2053
|
+
'all': [
|
|
2054
|
+
'conversation_pbx_audio_uuid',
|
|
2055
|
+
],
|
|
2056
|
+
'required': [
|
|
2057
|
+
'conversation_pbx_audio_uuid',
|
|
2058
|
+
],
|
|
2059
|
+
'nullable': [
|
|
2060
|
+
],
|
|
2061
|
+
'enum': [
|
|
2062
|
+
],
|
|
2063
|
+
'validation': [
|
|
2064
|
+
]
|
|
2065
|
+
},
|
|
2066
|
+
root_map={
|
|
2067
|
+
'validations': {
|
|
2068
|
+
},
|
|
2069
|
+
'allowed_values': {
|
|
2070
|
+
},
|
|
2071
|
+
'openapi_types': {
|
|
2072
|
+
'conversation_pbx_audio_uuid':
|
|
2073
|
+
(str,),
|
|
2074
|
+
},
|
|
2075
|
+
'attribute_map': {
|
|
2076
|
+
'conversation_pbx_audio_uuid': 'conversationPbxAudioUuid',
|
|
2077
|
+
},
|
|
2078
|
+
'location_map': {
|
|
2079
|
+
'conversation_pbx_audio_uuid': 'path',
|
|
2080
|
+
},
|
|
2081
|
+
'collection_format_map': {
|
|
2082
|
+
}
|
|
2083
|
+
},
|
|
2084
|
+
headers_map={
|
|
2085
|
+
'accept': [
|
|
2086
|
+
'application/json'
|
|
2087
|
+
],
|
|
2088
|
+
'content_type': [],
|
|
2089
|
+
},
|
|
2090
|
+
api_client=api_client
|
|
2091
|
+
)
|
|
2039
2092
|
self.get_pbx_audios_endpoint = _Endpoint(
|
|
2040
2093
|
settings={
|
|
2041
2094
|
'response_type': (ConversationPbxAudiosResponse,),
|
|
@@ -7703,6 +7756,89 @@ class ConversationApi(object):
|
|
|
7703
7756
|
conversation_pbx_audio_uuid
|
|
7704
7757
|
return self.get_pbx_audio_endpoint.call_with_http_info(**kwargs)
|
|
7705
7758
|
|
|
7759
|
+
def get_pbx_audio_usage(
|
|
7760
|
+
self,
|
|
7761
|
+
conversation_pbx_audio_uuid,
|
|
7762
|
+
**kwargs
|
|
7763
|
+
):
|
|
7764
|
+
"""Get pbx audio usage # noqa: E501
|
|
7765
|
+
|
|
7766
|
+
Retrieve a pbx audio usage # noqa: E501
|
|
7767
|
+
This method makes a synchronous HTTP request by default. To make an
|
|
7768
|
+
asynchronous HTTP request, please pass async_req=True
|
|
7769
|
+
|
|
7770
|
+
>>> thread = api.get_pbx_audio_usage(conversation_pbx_audio_uuid, async_req=True)
|
|
7771
|
+
>>> result = thread.get()
|
|
7772
|
+
|
|
7773
|
+
Args:
|
|
7774
|
+
conversation_pbx_audio_uuid (str):
|
|
7775
|
+
|
|
7776
|
+
Keyword Args:
|
|
7777
|
+
_return_http_data_only (bool): response data without head status
|
|
7778
|
+
code and headers. Default is True.
|
|
7779
|
+
_preload_content (bool): if False, the urllib3.HTTPResponse object
|
|
7780
|
+
will be returned without reading/decoding response data.
|
|
7781
|
+
Default is True.
|
|
7782
|
+
_request_timeout (int/float/tuple): timeout setting for this request. If
|
|
7783
|
+
one number provided, it will be total request timeout. It can also
|
|
7784
|
+
be a pair (tuple) of (connection, read) timeouts.
|
|
7785
|
+
Default is None.
|
|
7786
|
+
_check_input_type (bool): specifies if type checking
|
|
7787
|
+
should be done one the data sent to the server.
|
|
7788
|
+
Default is True.
|
|
7789
|
+
_check_return_type (bool): specifies if type checking
|
|
7790
|
+
should be done one the data received from the server.
|
|
7791
|
+
Default is True.
|
|
7792
|
+
_spec_property_naming (bool): True if the variable names in the input data
|
|
7793
|
+
are serialized names, as specified in the OpenAPI document.
|
|
7794
|
+
False if the variable names in the input data
|
|
7795
|
+
are pythonic names, e.g. snake case (default)
|
|
7796
|
+
_content_type (str/None): force body content-type.
|
|
7797
|
+
Default is None and content-type will be predicted by allowed
|
|
7798
|
+
content-types and body.
|
|
7799
|
+
_host_index (int/None): specifies the index of the server
|
|
7800
|
+
that we want to use.
|
|
7801
|
+
Default is read from the configuration.
|
|
7802
|
+
_request_auths (list): set to override the auth_settings for an a single
|
|
7803
|
+
request; this effectively ignores the authentication
|
|
7804
|
+
in the spec for a single request.
|
|
7805
|
+
Default is None
|
|
7806
|
+
async_req (bool): execute request asynchronously
|
|
7807
|
+
|
|
7808
|
+
Returns:
|
|
7809
|
+
ConversationPbxAudioUsageResponse
|
|
7810
|
+
If the method is called asynchronously, returns the request
|
|
7811
|
+
thread.
|
|
7812
|
+
"""
|
|
7813
|
+
kwargs['async_req'] = kwargs.get(
|
|
7814
|
+
'async_req', False
|
|
7815
|
+
)
|
|
7816
|
+
kwargs['_return_http_data_only'] = kwargs.get(
|
|
7817
|
+
'_return_http_data_only', True
|
|
7818
|
+
)
|
|
7819
|
+
kwargs['_preload_content'] = kwargs.get(
|
|
7820
|
+
'_preload_content', True
|
|
7821
|
+
)
|
|
7822
|
+
kwargs['_request_timeout'] = kwargs.get(
|
|
7823
|
+
'_request_timeout', None
|
|
7824
|
+
)
|
|
7825
|
+
kwargs['_check_input_type'] = kwargs.get(
|
|
7826
|
+
'_check_input_type', True
|
|
7827
|
+
)
|
|
7828
|
+
kwargs['_check_return_type'] = kwargs.get(
|
|
7829
|
+
'_check_return_type', True
|
|
7830
|
+
)
|
|
7831
|
+
kwargs['_spec_property_naming'] = kwargs.get(
|
|
7832
|
+
'_spec_property_naming', False
|
|
7833
|
+
)
|
|
7834
|
+
kwargs['_content_type'] = kwargs.get(
|
|
7835
|
+
'_content_type')
|
|
7836
|
+
kwargs['_host_index'] = kwargs.get('_host_index')
|
|
7837
|
+
kwargs['_request_auths'] = kwargs.get('_request_auths', None)
|
|
7838
|
+
kwargs['conversation_pbx_audio_uuid'] = \
|
|
7839
|
+
conversation_pbx_audio_uuid
|
|
7840
|
+
return self.get_pbx_audio_usage_endpoint.call_with_http_info(**kwargs)
|
|
7841
|
+
|
|
7706
7842
|
def get_pbx_audios(
|
|
7707
7843
|
self,
|
|
7708
7844
|
**kwargs
|
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.215/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.215".\
|
|
426
426
|
format(env=sys.platform, pyversion=sys.version)
|
|
427
427
|
|
|
428
428
|
def get_host_settings(self):
|
|
@@ -62,12 +62,21 @@ class ChannelPartnerOrder(ModelNormal):
|
|
|
62
62
|
"""
|
|
63
63
|
|
|
64
64
|
allowed_values = {
|
|
65
|
+
('echeck_bank_account_type',): {
|
|
66
|
+
'CHECKING': "Checking",
|
|
67
|
+
'SAVINGS': "Savings",
|
|
68
|
+
},
|
|
69
|
+
('echeck_bank_owner_type',): {
|
|
70
|
+
'BUSINESS': "Business",
|
|
71
|
+
'PERSONAL': "Personal",
|
|
72
|
+
},
|
|
65
73
|
('payment_method',): {
|
|
66
74
|
'AFFIRM': "Affirm",
|
|
67
75
|
'AMAZON': "Amazon",
|
|
68
76
|
'CHECK': "Check",
|
|
69
77
|
'COD': "COD",
|
|
70
78
|
'CREDIT_CARD': "Credit Card",
|
|
79
|
+
'ECHECK': "eCheck",
|
|
71
80
|
'LOANHERO': "LoanHero",
|
|
72
81
|
'MONEY_ORDER': "Money Order",
|
|
73
82
|
'PAYPAL': "PayPal",
|
|
@@ -253,6 +262,16 @@ class ChannelPartnerOrder(ModelNormal):
|
|
|
253
262
|
'custom_field6': (str,), # noqa: E501
|
|
254
263
|
'custom_field7': (str,), # noqa: E501
|
|
255
264
|
'delivery_date': (str,), # noqa: E501
|
|
265
|
+
'echeck_bank_aba_code': (str,), # noqa: E501
|
|
266
|
+
'echeck_bank_account_name': (str,), # noqa: E501
|
|
267
|
+
'echeck_bank_account_number': (str,), # noqa: E501
|
|
268
|
+
'echeck_bank_account_type': (str,), # noqa: E501
|
|
269
|
+
'echeck_bank_name': (str,), # noqa: E501
|
|
270
|
+
'echeck_bank_owner_type': (str,), # noqa: E501
|
|
271
|
+
'echeck_customer_tax_id': (str,), # noqa: E501
|
|
272
|
+
'echeck_drivers_license_dob': (str,), # noqa: E501
|
|
273
|
+
'echeck_drivers_license_number': (str,), # noqa: E501
|
|
274
|
+
'echeck_drivers_license_state': (str,), # noqa: E501
|
|
256
275
|
'email': (str,), # noqa: E501
|
|
257
276
|
'gift': (bool,), # noqa: E501
|
|
258
277
|
'gift_email': (str,), # noqa: E501
|
|
@@ -342,6 +361,16 @@ class ChannelPartnerOrder(ModelNormal):
|
|
|
342
361
|
'custom_field6': 'custom_field6', # noqa: E501
|
|
343
362
|
'custom_field7': 'custom_field7', # noqa: E501
|
|
344
363
|
'delivery_date': 'delivery_date', # noqa: E501
|
|
364
|
+
'echeck_bank_aba_code': 'echeck_bank_aba_code', # noqa: E501
|
|
365
|
+
'echeck_bank_account_name': 'echeck_bank_account_name', # noqa: E501
|
|
366
|
+
'echeck_bank_account_number': 'echeck_bank_account_number', # noqa: E501
|
|
367
|
+
'echeck_bank_account_type': 'echeck_bank_account_type', # noqa: E501
|
|
368
|
+
'echeck_bank_name': 'echeck_bank_name', # noqa: E501
|
|
369
|
+
'echeck_bank_owner_type': 'echeck_bank_owner_type', # noqa: E501
|
|
370
|
+
'echeck_customer_tax_id': 'echeck_customer_tax_id', # noqa: E501
|
|
371
|
+
'echeck_drivers_license_dob': 'echeck_drivers_license_dob', # noqa: E501
|
|
372
|
+
'echeck_drivers_license_number': 'echeck_drivers_license_number', # noqa: E501
|
|
373
|
+
'echeck_drivers_license_state': 'echeck_drivers_license_state', # noqa: E501
|
|
345
374
|
'email': 'email', # noqa: E501
|
|
346
375
|
'gift': 'gift', # noqa: E501
|
|
347
376
|
'gift_email': 'gift_email', # noqa: E501
|
|
@@ -466,6 +495,16 @@ class ChannelPartnerOrder(ModelNormal):
|
|
|
466
495
|
custom_field6 (str): Custom field 6. [optional] # noqa: E501
|
|
467
496
|
custom_field7 (str): Custom field 7. [optional] # noqa: E501
|
|
468
497
|
delivery_date (str): Date the customer is requesting delivery on. Typically used for perishable product delivery.. [optional] # noqa: E501
|
|
498
|
+
echeck_bank_aba_code (str): eCheck bank ABA code. [optional] # noqa: E501
|
|
499
|
+
echeck_bank_account_name (str): eCheck bank account name. [optional] # noqa: E501
|
|
500
|
+
echeck_bank_account_number (str): eCheck bank account number. [optional] # noqa: E501
|
|
501
|
+
echeck_bank_account_type (str): eCheck bank account type. [optional] # noqa: E501
|
|
502
|
+
echeck_bank_name (str): eCheck bank name. [optional] # noqa: E501
|
|
503
|
+
echeck_bank_owner_type (str): eCheck bank owner type. [optional] # noqa: E501
|
|
504
|
+
echeck_customer_tax_id (str): eCheck customer tax id. [optional] # noqa: E501
|
|
505
|
+
echeck_drivers_license_dob (str): eCheck drivers license dob. [optional] # noqa: E501
|
|
506
|
+
echeck_drivers_license_number (str): eCheck drivers license number. [optional] # noqa: E501
|
|
507
|
+
echeck_drivers_license_state (str): eCheck drivers license state. [optional] # noqa: E501
|
|
469
508
|
email (str): Email. [optional] # noqa: E501
|
|
470
509
|
gift (bool): True if this order is a gift. [optional] # noqa: E501
|
|
471
510
|
gift_email (str): Email address of the gift recipient. [optional] # noqa: E501
|
|
@@ -632,6 +671,16 @@ class ChannelPartnerOrder(ModelNormal):
|
|
|
632
671
|
custom_field6 (str): Custom field 6. [optional] # noqa: E501
|
|
633
672
|
custom_field7 (str): Custom field 7. [optional] # noqa: E501
|
|
634
673
|
delivery_date (str): Date the customer is requesting delivery on. Typically used for perishable product delivery.. [optional] # noqa: E501
|
|
674
|
+
echeck_bank_aba_code (str): eCheck bank ABA code. [optional] # noqa: E501
|
|
675
|
+
echeck_bank_account_name (str): eCheck bank account name. [optional] # noqa: E501
|
|
676
|
+
echeck_bank_account_number (str): eCheck bank account number. [optional] # noqa: E501
|
|
677
|
+
echeck_bank_account_type (str): eCheck bank account type. [optional] # noqa: E501
|
|
678
|
+
echeck_bank_name (str): eCheck bank name. [optional] # noqa: E501
|
|
679
|
+
echeck_bank_owner_type (str): eCheck bank owner type. [optional] # noqa: E501
|
|
680
|
+
echeck_customer_tax_id (str): eCheck customer tax id. [optional] # noqa: E501
|
|
681
|
+
echeck_drivers_license_dob (str): eCheck drivers license dob. [optional] # noqa: E501
|
|
682
|
+
echeck_drivers_license_number (str): eCheck drivers license number. [optional] # noqa: E501
|
|
683
|
+
echeck_drivers_license_state (str): eCheck drivers license state. [optional] # noqa: E501
|
|
635
684
|
email (str): Email. [optional] # noqa: E501
|
|
636
685
|
gift (bool): True if this order is a gift. [optional] # noqa: E501
|
|
637
686
|
gift_email (str): Email address of the gift recipient. [optional] # noqa: E501
|
|
@@ -107,6 +107,7 @@ class ConversationPbxAudio(ModelNormal):
|
|
|
107
107
|
'filename': (str,), # noqa: E501
|
|
108
108
|
'merchant_id': (str,), # noqa: E501
|
|
109
109
|
'mime_type': (str,), # noqa: E501
|
|
110
|
+
'url': (str,), # noqa: E501
|
|
110
111
|
'user_id': (int,), # noqa: E501
|
|
111
112
|
'version': (int,), # noqa: E501
|
|
112
113
|
}
|
|
@@ -124,6 +125,7 @@ class ConversationPbxAudio(ModelNormal):
|
|
|
124
125
|
'filename': 'filename', # noqa: E501
|
|
125
126
|
'merchant_id': 'merchant_id', # noqa: E501
|
|
126
127
|
'mime_type': 'mime_type', # noqa: E501
|
|
128
|
+
'url': 'url', # noqa: E501
|
|
127
129
|
'user_id': 'user_id', # noqa: E501
|
|
128
130
|
'version': 'version', # noqa: E501
|
|
129
131
|
}
|
|
@@ -176,6 +178,7 @@ class ConversationPbxAudio(ModelNormal):
|
|
|
176
178
|
filename (str): Filename. [optional] # noqa: E501
|
|
177
179
|
merchant_id (str): Merchant Id. [optional] # noqa: E501
|
|
178
180
|
mime_type (str): Mime Type. [optional] # noqa: E501
|
|
181
|
+
url (str): URL. [optional] # noqa: E501
|
|
179
182
|
user_id (int): User Id. [optional] # noqa: E501
|
|
180
183
|
version (int): Version. [optional] # noqa: E501
|
|
181
184
|
"""
|
|
@@ -270,6 +273,7 @@ class ConversationPbxAudio(ModelNormal):
|
|
|
270
273
|
filename (str): Filename. [optional] # noqa: E501
|
|
271
274
|
merchant_id (str): Merchant Id. [optional] # noqa: E501
|
|
272
275
|
mime_type (str): Mime Type. [optional] # noqa: E501
|
|
276
|
+
url (str): URL. [optional] # noqa: E501
|
|
273
277
|
user_id (int): User Id. [optional] # noqa: E501
|
|
274
278
|
version (int): Version. [optional] # noqa: E501
|
|
275
279
|
"""
|
|
@@ -0,0 +1,304 @@
|
|
|
1
|
+
"""
|
|
2
|
+
UltraCart Rest API V2
|
|
3
|
+
|
|
4
|
+
UltraCart REST API Version 2 # noqa: E501
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: 2.0.0
|
|
7
|
+
Contact: support@ultracart.com
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
"""
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
import re # noqa: F401
|
|
13
|
+
import sys # noqa: F401
|
|
14
|
+
|
|
15
|
+
from ultracart.model_utils import ( # noqa: F401
|
|
16
|
+
ApiTypeError,
|
|
17
|
+
ModelComposed,
|
|
18
|
+
ModelNormal,
|
|
19
|
+
ModelSimple,
|
|
20
|
+
cached_property,
|
|
21
|
+
change_keys_js_to_python,
|
|
22
|
+
convert_js_args_to_python_args,
|
|
23
|
+
date,
|
|
24
|
+
datetime,
|
|
25
|
+
file_type,
|
|
26
|
+
none_type,
|
|
27
|
+
validate_get_composed_info,
|
|
28
|
+
OpenApiModel
|
|
29
|
+
)
|
|
30
|
+
from ultracart.exceptions import ApiAttributeError
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
def lazy_import():
|
|
34
|
+
from ultracart.model.conversation_pbx_menu import ConversationPbxMenu
|
|
35
|
+
from ultracart.model.conversation_pbx_queue import ConversationPbxQueue
|
|
36
|
+
from ultracart.model.conversation_pbx_voicemail_mailbox import ConversationPbxVoicemailMailbox
|
|
37
|
+
from ultracart.model.error import Error
|
|
38
|
+
from ultracart.model.response_metadata import ResponseMetadata
|
|
39
|
+
from ultracart.model.warning import Warning
|
|
40
|
+
globals()['ConversationPbxMenu'] = ConversationPbxMenu
|
|
41
|
+
globals()['ConversationPbxQueue'] = ConversationPbxQueue
|
|
42
|
+
globals()['ConversationPbxVoicemailMailbox'] = ConversationPbxVoicemailMailbox
|
|
43
|
+
globals()['Error'] = Error
|
|
44
|
+
globals()['ResponseMetadata'] = ResponseMetadata
|
|
45
|
+
globals()['Warning'] = Warning
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
class ConversationPbxAudioUsageResponse(ModelNormal):
|
|
49
|
+
"""NOTE: This class is auto generated by OpenAPI Generator.
|
|
50
|
+
Ref: https://openapi-generator.tech
|
|
51
|
+
|
|
52
|
+
Do not edit the class manually.
|
|
53
|
+
|
|
54
|
+
Attributes:
|
|
55
|
+
allowed_values (dict): The key is the tuple path to the attribute
|
|
56
|
+
and the for var_name this is (var_name,). The value is a dict
|
|
57
|
+
with a capitalized key describing the allowed value and an allowed
|
|
58
|
+
value. These dicts store the allowed enum values.
|
|
59
|
+
attribute_map (dict): The key is attribute name
|
|
60
|
+
and the value is json key in definition.
|
|
61
|
+
discriminator_value_class_map (dict): A dict to go from the discriminator
|
|
62
|
+
variable value to the discriminator class name.
|
|
63
|
+
validations (dict): The key is the tuple path to the attribute
|
|
64
|
+
and the for var_name this is (var_name,). The value is a dict
|
|
65
|
+
that stores validations for max_length, min_length, max_items,
|
|
66
|
+
min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum,
|
|
67
|
+
inclusive_minimum, and regex.
|
|
68
|
+
additional_properties_type (tuple): A tuple of classes accepted
|
|
69
|
+
as additional properties values.
|
|
70
|
+
"""
|
|
71
|
+
|
|
72
|
+
allowed_values = {
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
validations = {
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
@cached_property
|
|
79
|
+
def additional_properties_type():
|
|
80
|
+
"""
|
|
81
|
+
This must be a method because a model may have properties that are
|
|
82
|
+
of type self, this must run after the class is loaded
|
|
83
|
+
"""
|
|
84
|
+
lazy_import()
|
|
85
|
+
return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501
|
|
86
|
+
|
|
87
|
+
_nullable = False
|
|
88
|
+
|
|
89
|
+
@cached_property
|
|
90
|
+
def openapi_types():
|
|
91
|
+
"""
|
|
92
|
+
This must be a method because a model may have properties that are
|
|
93
|
+
of type self, this must run after the class is loaded
|
|
94
|
+
|
|
95
|
+
Returns
|
|
96
|
+
openapi_types (dict): The key is attribute name
|
|
97
|
+
and the value is attribute type.
|
|
98
|
+
"""
|
|
99
|
+
lazy_import()
|
|
100
|
+
return {
|
|
101
|
+
'error': (Error,), # noqa: E501
|
|
102
|
+
'menus': ([ConversationPbxMenu],), # noqa: E501
|
|
103
|
+
'metadata': (ResponseMetadata,), # noqa: E501
|
|
104
|
+
'queues': ([ConversationPbxQueue],), # noqa: E501
|
|
105
|
+
'success': (bool,), # noqa: E501
|
|
106
|
+
'voicemail_mailboxes': ([ConversationPbxVoicemailMailbox],), # noqa: E501
|
|
107
|
+
'warning': (Warning,), # noqa: E501
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
@cached_property
|
|
111
|
+
def discriminator():
|
|
112
|
+
return None
|
|
113
|
+
|
|
114
|
+
|
|
115
|
+
attribute_map = {
|
|
116
|
+
'error': 'error', # noqa: E501
|
|
117
|
+
'menus': 'menus', # noqa: E501
|
|
118
|
+
'metadata': 'metadata', # noqa: E501
|
|
119
|
+
'queues': 'queues', # noqa: E501
|
|
120
|
+
'success': 'success', # noqa: E501
|
|
121
|
+
'voicemail_mailboxes': 'voicemail_mailboxes', # noqa: E501
|
|
122
|
+
'warning': 'warning', # noqa: E501
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
read_only_vars = {
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
_composed_schemas = {}
|
|
129
|
+
|
|
130
|
+
@classmethod
|
|
131
|
+
@convert_js_args_to_python_args
|
|
132
|
+
def _from_openapi_data(cls, *args, **kwargs): # noqa: E501
|
|
133
|
+
"""ConversationPbxAudioUsageResponse - a model defined in OpenAPI
|
|
134
|
+
|
|
135
|
+
Keyword Args:
|
|
136
|
+
_check_type (bool): if True, values for parameters in openapi_types
|
|
137
|
+
will be type checked and a TypeError will be
|
|
138
|
+
raised if the wrong type is input.
|
|
139
|
+
Defaults to True
|
|
140
|
+
_path_to_item (tuple/list): This is a list of keys or values to
|
|
141
|
+
drill down to the model in received_data
|
|
142
|
+
when deserializing a response
|
|
143
|
+
_spec_property_naming (bool): True if the variable names in the input data
|
|
144
|
+
are serialized names, as specified in the OpenAPI document.
|
|
145
|
+
False if the variable names in the input data
|
|
146
|
+
are pythonic names, e.g. snake case (default)
|
|
147
|
+
_configuration (Configuration): the instance to use when
|
|
148
|
+
deserializing a file_type parameter.
|
|
149
|
+
If passed, type conversion is attempted
|
|
150
|
+
If omitted no type conversion is done.
|
|
151
|
+
_visited_composed_classes (tuple): This stores a tuple of
|
|
152
|
+
classes that we have traveled through so that
|
|
153
|
+
if we see that class again we will not use its
|
|
154
|
+
discriminator again.
|
|
155
|
+
When traveling through a discriminator, the
|
|
156
|
+
composed schema that is
|
|
157
|
+
is traveled through is added to this set.
|
|
158
|
+
For example if Animal has a discriminator
|
|
159
|
+
petType and we pass in "Dog", and the class Dog
|
|
160
|
+
allOf includes Animal, we move through Animal
|
|
161
|
+
once using the discriminator, and pick Dog.
|
|
162
|
+
Then in Dog, we will make an instance of the
|
|
163
|
+
Animal class but this time we won't travel
|
|
164
|
+
through its discriminator because we passed in
|
|
165
|
+
_visited_composed_classes = (Animal,)
|
|
166
|
+
error (Error): [optional] # noqa: E501
|
|
167
|
+
menus ([ConversationPbxMenu]): [optional] # noqa: E501
|
|
168
|
+
metadata (ResponseMetadata): [optional] # noqa: E501
|
|
169
|
+
queues ([ConversationPbxQueue]): [optional] # noqa: E501
|
|
170
|
+
success (bool): Indicates if API call was successful. [optional] # noqa: E501
|
|
171
|
+
voicemail_mailboxes ([ConversationPbxVoicemailMailbox]): [optional] # noqa: E501
|
|
172
|
+
warning (Warning): [optional] # noqa: E501
|
|
173
|
+
"""
|
|
174
|
+
|
|
175
|
+
_check_type = kwargs.pop('_check_type', True)
|
|
176
|
+
_spec_property_naming = kwargs.pop('_spec_property_naming', True)
|
|
177
|
+
_path_to_item = kwargs.pop('_path_to_item', ())
|
|
178
|
+
_configuration = kwargs.pop('_configuration', None)
|
|
179
|
+
_visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
|
|
180
|
+
|
|
181
|
+
self = super(OpenApiModel, cls).__new__(cls)
|
|
182
|
+
|
|
183
|
+
if args:
|
|
184
|
+
for arg in args:
|
|
185
|
+
if isinstance(arg, dict):
|
|
186
|
+
kwargs.update(arg)
|
|
187
|
+
else:
|
|
188
|
+
raise ApiTypeError(
|
|
189
|
+
"Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
|
|
190
|
+
args,
|
|
191
|
+
self.__class__.__name__,
|
|
192
|
+
),
|
|
193
|
+
path_to_item=_path_to_item,
|
|
194
|
+
valid_classes=(self.__class__,),
|
|
195
|
+
)
|
|
196
|
+
|
|
197
|
+
self._data_store = {}
|
|
198
|
+
self._check_type = _check_type
|
|
199
|
+
self._spec_property_naming = _spec_property_naming
|
|
200
|
+
self._path_to_item = _path_to_item
|
|
201
|
+
self._configuration = _configuration
|
|
202
|
+
self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
|
|
203
|
+
|
|
204
|
+
for var_name, var_value in kwargs.items():
|
|
205
|
+
if var_name not in self.attribute_map and \
|
|
206
|
+
self._configuration is not None and \
|
|
207
|
+
self._configuration.discard_unknown_keys and \
|
|
208
|
+
self.additional_properties_type is None:
|
|
209
|
+
# discard variable.
|
|
210
|
+
continue
|
|
211
|
+
setattr(self, var_name, var_value)
|
|
212
|
+
return self
|
|
213
|
+
|
|
214
|
+
required_properties = set([
|
|
215
|
+
'_data_store',
|
|
216
|
+
'_check_type',
|
|
217
|
+
'_spec_property_naming',
|
|
218
|
+
'_path_to_item',
|
|
219
|
+
'_configuration',
|
|
220
|
+
'_visited_composed_classes',
|
|
221
|
+
])
|
|
222
|
+
|
|
223
|
+
@convert_js_args_to_python_args
|
|
224
|
+
def __init__(self, *args, **kwargs): # noqa: E501
|
|
225
|
+
"""ConversationPbxAudioUsageResponse - a model defined in OpenAPI
|
|
226
|
+
|
|
227
|
+
Keyword Args:
|
|
228
|
+
_check_type (bool): if True, values for parameters in openapi_types
|
|
229
|
+
will be type checked and a TypeError will be
|
|
230
|
+
raised if the wrong type is input.
|
|
231
|
+
Defaults to True
|
|
232
|
+
_path_to_item (tuple/list): This is a list of keys or values to
|
|
233
|
+
drill down to the model in received_data
|
|
234
|
+
when deserializing a response
|
|
235
|
+
_spec_property_naming (bool): True if the variable names in the input data
|
|
236
|
+
are serialized names, as specified in the OpenAPI document.
|
|
237
|
+
False if the variable names in the input data
|
|
238
|
+
are pythonic names, e.g. snake case (default)
|
|
239
|
+
_configuration (Configuration): the instance to use when
|
|
240
|
+
deserializing a file_type parameter.
|
|
241
|
+
If passed, type conversion is attempted
|
|
242
|
+
If omitted no type conversion is done.
|
|
243
|
+
_visited_composed_classes (tuple): This stores a tuple of
|
|
244
|
+
classes that we have traveled through so that
|
|
245
|
+
if we see that class again we will not use its
|
|
246
|
+
discriminator again.
|
|
247
|
+
When traveling through a discriminator, the
|
|
248
|
+
composed schema that is
|
|
249
|
+
is traveled through is added to this set.
|
|
250
|
+
For example if Animal has a discriminator
|
|
251
|
+
petType and we pass in "Dog", and the class Dog
|
|
252
|
+
allOf includes Animal, we move through Animal
|
|
253
|
+
once using the discriminator, and pick Dog.
|
|
254
|
+
Then in Dog, we will make an instance of the
|
|
255
|
+
Animal class but this time we won't travel
|
|
256
|
+
through its discriminator because we passed in
|
|
257
|
+
_visited_composed_classes = (Animal,)
|
|
258
|
+
error (Error): [optional] # noqa: E501
|
|
259
|
+
menus ([ConversationPbxMenu]): [optional] # noqa: E501
|
|
260
|
+
metadata (ResponseMetadata): [optional] # noqa: E501
|
|
261
|
+
queues ([ConversationPbxQueue]): [optional] # noqa: E501
|
|
262
|
+
success (bool): Indicates if API call was successful. [optional] # noqa: E501
|
|
263
|
+
voicemail_mailboxes ([ConversationPbxVoicemailMailbox]): [optional] # noqa: E501
|
|
264
|
+
warning (Warning): [optional] # noqa: E501
|
|
265
|
+
"""
|
|
266
|
+
|
|
267
|
+
_check_type = kwargs.pop('_check_type', True)
|
|
268
|
+
_spec_property_naming = kwargs.pop('_spec_property_naming', False)
|
|
269
|
+
_path_to_item = kwargs.pop('_path_to_item', ())
|
|
270
|
+
_configuration = kwargs.pop('_configuration', None)
|
|
271
|
+
_visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
|
|
272
|
+
|
|
273
|
+
if args:
|
|
274
|
+
for arg in args:
|
|
275
|
+
if isinstance(arg, dict):
|
|
276
|
+
kwargs.update(arg)
|
|
277
|
+
else:
|
|
278
|
+
raise ApiTypeError(
|
|
279
|
+
"Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
|
|
280
|
+
args,
|
|
281
|
+
self.__class__.__name__,
|
|
282
|
+
),
|
|
283
|
+
path_to_item=_path_to_item,
|
|
284
|
+
valid_classes=(self.__class__,),
|
|
285
|
+
)
|
|
286
|
+
|
|
287
|
+
self._data_store = {}
|
|
288
|
+
self._check_type = _check_type
|
|
289
|
+
self._spec_property_naming = _spec_property_naming
|
|
290
|
+
self._path_to_item = _path_to_item
|
|
291
|
+
self._configuration = _configuration
|
|
292
|
+
self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
|
|
293
|
+
|
|
294
|
+
for var_name, var_value in kwargs.items():
|
|
295
|
+
if var_name not in self.attribute_map and \
|
|
296
|
+
self._configuration is not None and \
|
|
297
|
+
self._configuration.discard_unknown_keys and \
|
|
298
|
+
self.additional_properties_type is None:
|
|
299
|
+
# discard variable.
|
|
300
|
+
continue
|
|
301
|
+
setattr(self, var_name, var_value)
|
|
302
|
+
if var_name in self.read_only_vars:
|
|
303
|
+
raise ApiAttributeError(f"`{var_name}` is a read-only attribute. Use `from_openapi_data` to instantiate "
|
|
304
|
+
f"class with read only attributes.")
|
ultracart/model/order_utm.py
CHANGED
|
@@ -95,6 +95,12 @@ class OrderUtm(ModelNormal):
|
|
|
95
95
|
'fbclid': (str,), # noqa: E501
|
|
96
96
|
'gbraid': (str,), # noqa: E501
|
|
97
97
|
'glcid': (str,), # noqa: E501
|
|
98
|
+
'itm_campaign': (str,), # noqa: E501
|
|
99
|
+
'itm_content': (str,), # noqa: E501
|
|
100
|
+
'itm_id': (str,), # noqa: E501
|
|
101
|
+
'itm_medium': (str,), # noqa: E501
|
|
102
|
+
'itm_source': (str,), # noqa: E501
|
|
103
|
+
'itm_term': (str,), # noqa: E501
|
|
98
104
|
'msclkid': (str,), # noqa: E501
|
|
99
105
|
'ttclid': (str,), # noqa: E501
|
|
100
106
|
'uc_message_id': (str,), # noqa: E501
|
|
@@ -127,6 +133,12 @@ class OrderUtm(ModelNormal):
|
|
|
127
133
|
'fbclid': 'fbclid', # noqa: E501
|
|
128
134
|
'gbraid': 'gbraid', # noqa: E501
|
|
129
135
|
'glcid': 'glcid', # noqa: E501
|
|
136
|
+
'itm_campaign': 'itm_campaign', # noqa: E501
|
|
137
|
+
'itm_content': 'itm_content', # noqa: E501
|
|
138
|
+
'itm_id': 'itm_id', # noqa: E501
|
|
139
|
+
'itm_medium': 'itm_medium', # noqa: E501
|
|
140
|
+
'itm_source': 'itm_source', # noqa: E501
|
|
141
|
+
'itm_term': 'itm_term', # noqa: E501
|
|
130
142
|
'msclkid': 'msclkid', # noqa: E501
|
|
131
143
|
'ttclid': 'ttclid', # noqa: E501
|
|
132
144
|
'uc_message_id': 'uc_message_id', # noqa: E501
|
|
@@ -194,6 +206,12 @@ class OrderUtm(ModelNormal):
|
|
|
194
206
|
fbclid (str): [optional] # noqa: E501
|
|
195
207
|
gbraid (str): [optional] # noqa: E501
|
|
196
208
|
glcid (str): [optional] # noqa: E501
|
|
209
|
+
itm_campaign (str): [optional] # noqa: E501
|
|
210
|
+
itm_content (str): [optional] # noqa: E501
|
|
211
|
+
itm_id (str): [optional] # noqa: E501
|
|
212
|
+
itm_medium (str): [optional] # noqa: E501
|
|
213
|
+
itm_source (str): [optional] # noqa: E501
|
|
214
|
+
itm_term (str): [optional] # noqa: E501
|
|
197
215
|
msclkid (str): [optional] # noqa: E501
|
|
198
216
|
ttclid (str): [optional] # noqa: E501
|
|
199
217
|
uc_message_id (str): [optional] # noqa: E501
|
|
@@ -303,6 +321,12 @@ class OrderUtm(ModelNormal):
|
|
|
303
321
|
fbclid (str): [optional] # noqa: E501
|
|
304
322
|
gbraid (str): [optional] # noqa: E501
|
|
305
323
|
glcid (str): [optional] # noqa: E501
|
|
324
|
+
itm_campaign (str): [optional] # noqa: E501
|
|
325
|
+
itm_content (str): [optional] # noqa: E501
|
|
326
|
+
itm_id (str): [optional] # noqa: E501
|
|
327
|
+
itm_medium (str): [optional] # noqa: E501
|
|
328
|
+
itm_source (str): [optional] # noqa: E501
|
|
329
|
+
itm_term (str): [optional] # noqa: E501
|
|
306
330
|
msclkid (str): [optional] # noqa: E501
|
|
307
331
|
ttclid (str): [optional] # noqa: E501
|
|
308
332
|
uc_message_id (str): [optional] # noqa: E501
|
ultracart/models/__init__.py
CHANGED
|
@@ -185,6 +185,7 @@ from ultracart.model.conversation_pbx_audio import ConversationPbxAudio
|
|
|
185
185
|
from ultracart.model.conversation_pbx_audio_response import ConversationPbxAudioResponse
|
|
186
186
|
from ultracart.model.conversation_pbx_audio_upload_url import ConversationPbxAudioUploadUrl
|
|
187
187
|
from ultracart.model.conversation_pbx_audio_upload_url_response import ConversationPbxAudioUploadUrlResponse
|
|
188
|
+
from ultracart.model.conversation_pbx_audio_usage_response import ConversationPbxAudioUsageResponse
|
|
188
189
|
from ultracart.model.conversation_pbx_audios_response import ConversationPbxAudiosResponse
|
|
189
190
|
from ultracart.model.conversation_pbx_customer_snapshot_request import ConversationPbxCustomerSnapshotRequest
|
|
190
191
|
from ultracart.model.conversation_pbx_customer_snapshot_response import ConversationPbxCustomerSnapshotResponse
|
|
@@ -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=msFgUcQee86rWfqF7INW-nxd9y5UGSN_Eu8E8GHSsdw,699
|
|
2
|
+
ultracart/api_client.py,sha256=bQTNylKrABsHyGpmZGq948_cryxcUUiFILLJxWSqjR4,39072
|
|
3
|
+
ultracart/configuration.py,sha256=H1zyZ1rXw45NZcCxGsVWxg_FuGlvhFhFK2MvOj6Cuvg,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=HjH1FRZRlPmxVoF5pfZ4F_o3cViLdO_W-Nh9UV8YpDo,463604
|
|
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
|
|
@@ -136,7 +136,7 @@ ultracart/model/channel_partner_cancel_response.py,sha256=jUOeYsm5CqtHInXWujdpHJ
|
|
|
136
136
|
ultracart/model/channel_partner_estimate_shipping_response.py,sha256=Y1mG1FK9UEoTaYBvGwt2Eiod4r0oabWfUbUnY_Hfuwc,13090
|
|
137
137
|
ultracart/model/channel_partner_estimate_tax_response.py,sha256=deJ8MMWfw9UjYXqyBFRiC6WYQKF4JnqAkzLK5MfEd6U,12744
|
|
138
138
|
ultracart/model/channel_partner_import_response.py,sha256=Oyt0Q-5zzTKQkOl8e2YtdruLR-TWJWPymKW0vYwEoI4,13430
|
|
139
|
-
ultracart/model/channel_partner_order.py,sha256=
|
|
139
|
+
ultracart/model/channel_partner_order.py,sha256=bpKzUix5Hfac1qmCrU_JAARs-_BZoilr3fzLofuEKzY,45296
|
|
140
140
|
ultracart/model/channel_partner_order_item.py,sha256=JWKbD-NtLFI--C6Ob613sNwtbQQOEt7mkfSTAY2NEAU,14596
|
|
141
141
|
ultracart/model/channel_partner_order_item_option.py,sha256=PXlQNBEXO00Ef4I7TE_yFAYfogbH-3sef5YleCruBnk,11741
|
|
142
142
|
ultracart/model/channel_partner_order_transaction.py,sha256=iJc9N5cr57Od203rNJYf3u9ZTqmR5ZQb-uutw4S3pQE,12195
|
|
@@ -200,10 +200,11 @@ ultracart/model/conversation_participant.py,sha256=AL9wPJxm2TozPN31HbUisIv6AhvTL
|
|
|
200
200
|
ultracart/model/conversation_pbx_agent.py,sha256=aHLJ_UGwMLAJYZa-bI_2fIVgg7MWBjVgr5EgKKJGU0Q,14594
|
|
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
|
-
ultracart/model/conversation_pbx_audio.py,sha256=
|
|
203
|
+
ultracart/model/conversation_pbx_audio.py,sha256=0SF54E2KA7HeOb8szFIeydhTuilStBu7cbE3A0GX_JA,14218
|
|
204
204
|
ultracart/model/conversation_pbx_audio_response.py,sha256=D0fZUpw22P5QXSvfEp756d67ArwTSsNiBJzye9_pH3E,12871
|
|
205
205
|
ultracart/model/conversation_pbx_audio_upload_url.py,sha256=h3KlzvgL2QkDEdx6-55qB2xI4wHehOM5Dv4tKhkbh_g,11604
|
|
206
206
|
ultracart/model/conversation_pbx_audio_upload_url_response.py,sha256=gXXooQs_zWA_qwMEJoFywCcZedNzFXbNyKkfhaeukF0,13103
|
|
207
|
+
ultracart/model/conversation_pbx_audio_usage_response.py,sha256=tNc1ZTFkkUKvRiIc6ZMZMqdcGVTWlzuqV8YuFfhteQc,13792
|
|
207
208
|
ultracart/model/conversation_pbx_audios_response.py,sha256=llnOyuMCddIzgEzHTVHSKHeA7aha8ns6w2NDViqR8cY,12885
|
|
208
209
|
ultracart/model/conversation_pbx_customer_snapshot_request.py,sha256=NX_L4Dnn2vkE0LJWKuHU_s_opzpzxVvoZIyuULwH7bo,13442
|
|
209
210
|
ultracart/model/conversation_pbx_customer_snapshot_response.py,sha256=altaQBJHMquhMUViFRjvXY8c8BmPLs6KHRCzW_Ek0tg,13448
|
|
@@ -696,7 +697,7 @@ ultracart/model/order_token_response.py,sha256=HX53gJ6_G8Ifll-jc12Vu3FB2_w_5_J39
|
|
|
696
697
|
ultracart/model/order_tracking_number_detail.py,sha256=COyjRV94ApPrwheZBIGxquZy7TruRsage5-35tDcHkQ,14014
|
|
697
698
|
ultracart/model/order_tracking_number_details.py,sha256=2gibQ2Skhyc0jEwwspXiGsxbbJTMfDGYzPM1L6ryEkM,16062
|
|
698
699
|
ultracart/model/order_transactional_merchant_note.py,sha256=LqxIlPcc8gDDvrcfIOdmoRQQ5my49Ial-knJ5eHHgog,12199
|
|
699
|
-
ultracart/model/order_utm.py,sha256=
|
|
700
|
+
ultracart/model/order_utm.py,sha256=WijwQwM1z0uBWwl2PzxfMGmE3Y8Lz11gYIFOyzzHvm4,18198
|
|
700
701
|
ultracart/model/order_validation_request.py,sha256=5HojsjTF-bhOyvc7twg-yAZRJQIdBvOvlDNWPqgpR1c,11797
|
|
701
702
|
ultracart/model/order_validation_response.py,sha256=75YUEcSvOHtq7Kt90K6mr18qRmTSOqFf8fHLyjOKyRM,12326
|
|
702
703
|
ultracart/model/orders_response.py,sha256=tJZs-I7nB_eQ2E6ehT-hyCfzATnLjQk31Tlw5qjCKLM,12749
|
|
@@ -875,9 +876,9 @@ ultracart/model/workflow_tasks_response.py,sha256=KmHe72xKnZiS9CemBr5hluY5EsU9_x
|
|
|
875
876
|
ultracart/model/workflow_user.py,sha256=gkQIeMSIhawpz5wtpTJ8Lof_Td0IrwG0KZF6catE41k,11903
|
|
876
877
|
ultracart/model/workflow_user_response.py,sha256=TKfMu5vF1fXlV8mvxRFhvk6WNdGce2T8a4vFycQvuhQ,12785
|
|
877
878
|
ultracart/model/workflow_users_response.py,sha256=3Y7L1oHc2-HOvl1pDdcnl9xHKYLGblKpKdbkPBh2u68,13059
|
|
878
|
-
ultracart/models/__init__.py,sha256=
|
|
879
|
-
ultracart_rest_sdk-4.0.
|
|
880
|
-
ultracart_rest_sdk-4.0.
|
|
881
|
-
ultracart_rest_sdk-4.0.
|
|
882
|
-
ultracart_rest_sdk-4.0.
|
|
883
|
-
ultracart_rest_sdk-4.0.
|
|
879
|
+
ultracart/models/__init__.py,sha256=0VZcMHj-u6Zc6EOw-mQH_PPHT2FtR1T1Lzjalm0RbLI,65370
|
|
880
|
+
ultracart_rest_sdk-4.0.215.dist-info/LICENSE,sha256=4DukHX-rIHAHaf5BGLq1DYAMt0-ZA1OgXS9f_xwig2M,11558
|
|
881
|
+
ultracart_rest_sdk-4.0.215.dist-info/METADATA,sha256=EmsOXxld1GKvGnMYCfjDxOVeRG0sgiZW_BpCQf3ykXA,403
|
|
882
|
+
ultracart_rest_sdk-4.0.215.dist-info/WHEEL,sha256=OqRkF0eY5GHssMorFjlbTIq072vpHpF60fIQA6lS9xA,92
|
|
883
|
+
ultracart_rest_sdk-4.0.215.dist-info/top_level.txt,sha256=90IoRqV6KX58jTyx9MwEBqh4j38_10hWrrvqsmXWZYo,10
|
|
884
|
+
ultracart_rest_sdk-4.0.215.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|