ultracart-rest-sdk 4.0.211__py3-none-any.whl → 4.0.213__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/auto_order_api.py +153 -0
- ultracart/api/conversation_api.py +3 -2
- ultracart/api_client.py +1 -1
- ultracart/configuration.py +1 -1
- ultracart/model/auto_order.py +9 -0
- ultracart/model/auto_order_consolidate.py +264 -0
- ultracart/model/conversation_pbx_audio_upload_url.py +268 -0
- ultracart/model/conversation_pbx_audio_upload_url_response.py +292 -0
- ultracart/model/conversation_pbx_customer_snapshot_response.py +4 -4
- ultracart/models/__init__.py +3 -0
- {ultracart_rest_sdk-4.0.211.dist-info → ultracart_rest_sdk-4.0.213.dist-info}/METADATA +1 -1
- {ultracart_rest_sdk-4.0.211.dist-info → ultracart_rest_sdk-4.0.213.dist-info}/RECORD +16 -13
- {ultracart_rest_sdk-4.0.211.dist-info → ultracart_rest_sdk-4.0.213.dist-info}/LICENSE +0 -0
- {ultracart_rest_sdk-4.0.211.dist-info → ultracart_rest_sdk-4.0.213.dist-info}/WHEEL +0 -0
- {ultracart_rest_sdk-4.0.211.dist-info → ultracart_rest_sdk-4.0.213.dist-info}/top_level.txt +0 -0
ultracart/__init__.py
CHANGED
ultracart/api/auto_order_api.py
CHANGED
|
@@ -23,6 +23,7 @@ from ultracart.model_utils import ( # noqa: F401
|
|
|
23
23
|
validate_and_convert_types
|
|
24
24
|
)
|
|
25
25
|
from ultracart.model.auto_order import AutoOrder
|
|
26
|
+
from ultracart.model.auto_order_consolidate import AutoOrderConsolidate
|
|
26
27
|
from ultracart.model.auto_order_query import AutoOrderQuery
|
|
27
28
|
from ultracart.model.auto_order_query_batch import AutoOrderQueryBatch
|
|
28
29
|
from ultracart.model.auto_order_response import AutoOrderResponse
|
|
@@ -53,6 +54,70 @@ class AutoOrderApi(object):
|
|
|
53
54
|
if api_client is None:
|
|
54
55
|
api_client = ApiClient()
|
|
55
56
|
self.api_client = api_client
|
|
57
|
+
self.consolidate_auto_orders_endpoint = _Endpoint(
|
|
58
|
+
settings={
|
|
59
|
+
'response_type': (AutoOrderResponse,),
|
|
60
|
+
'auth': [
|
|
61
|
+
'ultraCartOauth',
|
|
62
|
+
'ultraCartSimpleApiKey'
|
|
63
|
+
],
|
|
64
|
+
'endpoint_path': '/auto_order/auto_orders/{auto_order_oid}/consolidate',
|
|
65
|
+
'operation_id': 'consolidate_auto_orders',
|
|
66
|
+
'http_method': 'PUT',
|
|
67
|
+
'servers': None,
|
|
68
|
+
},
|
|
69
|
+
params_map={
|
|
70
|
+
'all': [
|
|
71
|
+
'auto_order_oid',
|
|
72
|
+
'auto_order_consolidate',
|
|
73
|
+
'expand',
|
|
74
|
+
],
|
|
75
|
+
'required': [
|
|
76
|
+
'auto_order_oid',
|
|
77
|
+
'auto_order_consolidate',
|
|
78
|
+
],
|
|
79
|
+
'nullable': [
|
|
80
|
+
],
|
|
81
|
+
'enum': [
|
|
82
|
+
],
|
|
83
|
+
'validation': [
|
|
84
|
+
]
|
|
85
|
+
},
|
|
86
|
+
root_map={
|
|
87
|
+
'validations': {
|
|
88
|
+
},
|
|
89
|
+
'allowed_values': {
|
|
90
|
+
},
|
|
91
|
+
'openapi_types': {
|
|
92
|
+
'auto_order_oid':
|
|
93
|
+
(int,),
|
|
94
|
+
'auto_order_consolidate':
|
|
95
|
+
(AutoOrderConsolidate,),
|
|
96
|
+
'expand':
|
|
97
|
+
(str,),
|
|
98
|
+
},
|
|
99
|
+
'attribute_map': {
|
|
100
|
+
'auto_order_oid': 'auto_order_oid',
|
|
101
|
+
'expand': '_expand',
|
|
102
|
+
},
|
|
103
|
+
'location_map': {
|
|
104
|
+
'auto_order_oid': 'path',
|
|
105
|
+
'auto_order_consolidate': 'body',
|
|
106
|
+
'expand': 'query',
|
|
107
|
+
},
|
|
108
|
+
'collection_format_map': {
|
|
109
|
+
}
|
|
110
|
+
},
|
|
111
|
+
headers_map={
|
|
112
|
+
'accept': [
|
|
113
|
+
'application/json'
|
|
114
|
+
],
|
|
115
|
+
'content_type': [
|
|
116
|
+
'application/json; charset=UTF-8'
|
|
117
|
+
]
|
|
118
|
+
},
|
|
119
|
+
api_client=api_client
|
|
120
|
+
)
|
|
56
121
|
self.establish_auto_order_by_reference_order_id_endpoint = _Endpoint(
|
|
57
122
|
settings={
|
|
58
123
|
'response_type': (AutoOrderResponse,),
|
|
@@ -710,6 +775,94 @@ class AutoOrderApi(object):
|
|
|
710
775
|
api_client=api_client
|
|
711
776
|
)
|
|
712
777
|
|
|
778
|
+
def consolidate_auto_orders(
|
|
779
|
+
self,
|
|
780
|
+
auto_order_oid,
|
|
781
|
+
auto_order_consolidate,
|
|
782
|
+
**kwargs
|
|
783
|
+
):
|
|
784
|
+
"""Consolidates multiple auto orders # noqa: E501
|
|
785
|
+
|
|
786
|
+
Consolidates mutliple auto orders on the UltraCart account. # noqa: E501
|
|
787
|
+
This method makes a synchronous HTTP request by default. To make an
|
|
788
|
+
asynchronous HTTP request, please pass async_req=True
|
|
789
|
+
|
|
790
|
+
>>> thread = api.consolidate_auto_orders(auto_order_oid, auto_order_consolidate, async_req=True)
|
|
791
|
+
>>> result = thread.get()
|
|
792
|
+
|
|
793
|
+
Args:
|
|
794
|
+
auto_order_oid (int): The auto order oid to consolidate into.
|
|
795
|
+
auto_order_consolidate (AutoOrderConsolidate): Auto orders to consolidate
|
|
796
|
+
|
|
797
|
+
Keyword Args:
|
|
798
|
+
expand (str): The object expansion to perform on the result. See documentation for examples. [optional]
|
|
799
|
+
_return_http_data_only (bool): response data without head status
|
|
800
|
+
code and headers. Default is True.
|
|
801
|
+
_preload_content (bool): if False, the urllib3.HTTPResponse object
|
|
802
|
+
will be returned without reading/decoding response data.
|
|
803
|
+
Default is True.
|
|
804
|
+
_request_timeout (int/float/tuple): timeout setting for this request. If
|
|
805
|
+
one number provided, it will be total request timeout. It can also
|
|
806
|
+
be a pair (tuple) of (connection, read) timeouts.
|
|
807
|
+
Default is None.
|
|
808
|
+
_check_input_type (bool): specifies if type checking
|
|
809
|
+
should be done one the data sent to the server.
|
|
810
|
+
Default is True.
|
|
811
|
+
_check_return_type (bool): specifies if type checking
|
|
812
|
+
should be done one the data received from the server.
|
|
813
|
+
Default is True.
|
|
814
|
+
_spec_property_naming (bool): True if the variable names in the input data
|
|
815
|
+
are serialized names, as specified in the OpenAPI document.
|
|
816
|
+
False if the variable names in the input data
|
|
817
|
+
are pythonic names, e.g. snake case (default)
|
|
818
|
+
_content_type (str/None): force body content-type.
|
|
819
|
+
Default is None and content-type will be predicted by allowed
|
|
820
|
+
content-types and body.
|
|
821
|
+
_host_index (int/None): specifies the index of the server
|
|
822
|
+
that we want to use.
|
|
823
|
+
Default is read from the configuration.
|
|
824
|
+
_request_auths (list): set to override the auth_settings for an a single
|
|
825
|
+
request; this effectively ignores the authentication
|
|
826
|
+
in the spec for a single request.
|
|
827
|
+
Default is None
|
|
828
|
+
async_req (bool): execute request asynchronously
|
|
829
|
+
|
|
830
|
+
Returns:
|
|
831
|
+
AutoOrderResponse
|
|
832
|
+
If the method is called asynchronously, returns the request
|
|
833
|
+
thread.
|
|
834
|
+
"""
|
|
835
|
+
kwargs['async_req'] = kwargs.get(
|
|
836
|
+
'async_req', False
|
|
837
|
+
)
|
|
838
|
+
kwargs['_return_http_data_only'] = kwargs.get(
|
|
839
|
+
'_return_http_data_only', True
|
|
840
|
+
)
|
|
841
|
+
kwargs['_preload_content'] = kwargs.get(
|
|
842
|
+
'_preload_content', True
|
|
843
|
+
)
|
|
844
|
+
kwargs['_request_timeout'] = kwargs.get(
|
|
845
|
+
'_request_timeout', None
|
|
846
|
+
)
|
|
847
|
+
kwargs['_check_input_type'] = kwargs.get(
|
|
848
|
+
'_check_input_type', True
|
|
849
|
+
)
|
|
850
|
+
kwargs['_check_return_type'] = kwargs.get(
|
|
851
|
+
'_check_return_type', True
|
|
852
|
+
)
|
|
853
|
+
kwargs['_spec_property_naming'] = kwargs.get(
|
|
854
|
+
'_spec_property_naming', False
|
|
855
|
+
)
|
|
856
|
+
kwargs['_content_type'] = kwargs.get(
|
|
857
|
+
'_content_type')
|
|
858
|
+
kwargs['_host_index'] = kwargs.get('_host_index')
|
|
859
|
+
kwargs['_request_auths'] = kwargs.get('_request_auths', None)
|
|
860
|
+
kwargs['auto_order_oid'] = \
|
|
861
|
+
auto_order_oid
|
|
862
|
+
kwargs['auto_order_consolidate'] = \
|
|
863
|
+
auto_order_consolidate
|
|
864
|
+
return self.consolidate_auto_orders_endpoint.call_with_http_info(**kwargs)
|
|
865
|
+
|
|
713
866
|
def establish_auto_order_by_reference_order_id(
|
|
714
867
|
self,
|
|
715
868
|
reference_order_id,
|
|
@@ -47,6 +47,7 @@ from ultracart.model.conversation_pbx_agent_response import ConversationPbxAgent
|
|
|
47
47
|
from ultracart.model.conversation_pbx_agents_response import ConversationPbxAgentsResponse
|
|
48
48
|
from ultracart.model.conversation_pbx_audio import ConversationPbxAudio
|
|
49
49
|
from ultracart.model.conversation_pbx_audio_response import ConversationPbxAudioResponse
|
|
50
|
+
from ultracart.model.conversation_pbx_audio_upload_url_response import ConversationPbxAudioUploadUrlResponse
|
|
50
51
|
from ultracart.model.conversation_pbx_audios_response import ConversationPbxAudiosResponse
|
|
51
52
|
from ultracart.model.conversation_pbx_customer_snapshot_request import ConversationPbxCustomerSnapshotRequest
|
|
52
53
|
from ultracart.model.conversation_pbx_customer_snapshot_response import ConversationPbxCustomerSnapshotResponse
|
|
@@ -1380,7 +1381,7 @@ class ConversationApi(object):
|
|
|
1380
1381
|
)
|
|
1381
1382
|
self.get_conversation_pbx_audio_upload_url_endpoint = _Endpoint(
|
|
1382
1383
|
settings={
|
|
1383
|
-
'response_type': (
|
|
1384
|
+
'response_type': (ConversationPbxAudioUploadUrlResponse,),
|
|
1384
1385
|
'auth': [
|
|
1385
1386
|
'ultraCartOauth',
|
|
1386
1387
|
'ultraCartSimpleApiKey'
|
|
@@ -6699,7 +6700,7 @@ class ConversationApi(object):
|
|
|
6699
6700
|
async_req (bool): execute request asynchronously
|
|
6700
6701
|
|
|
6701
6702
|
Returns:
|
|
6702
|
-
|
|
6703
|
+
ConversationPbxAudioUploadUrlResponse
|
|
6703
6704
|
If the method is called asynchronously, returns the request
|
|
6704
6705
|
thread.
|
|
6705
6706
|
"""
|
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.213/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.213".\
|
|
426
426
|
format(env=sys.platform, pyversion=sys.version)
|
|
427
427
|
|
|
428
428
|
def get_host_settings(self):
|
ultracart/model/auto_order.py
CHANGED
|
@@ -72,6 +72,7 @@ class AutoOrder(ModelNormal):
|
|
|
72
72
|
'ACTIVE': "active",
|
|
73
73
|
'CANCELED': "canceled",
|
|
74
74
|
'DISABLED': "disabled",
|
|
75
|
+
'MERGED': "merged",
|
|
75
76
|
},
|
|
76
77
|
}
|
|
77
78
|
|
|
@@ -119,6 +120,8 @@ class AutoOrder(ModelNormal):
|
|
|
119
120
|
'logs': ([AutoOrderLog],), # noqa: E501
|
|
120
121
|
'management': (AutoOrderManagement,), # noqa: E501
|
|
121
122
|
'merchant_id': (str,), # noqa: E501
|
|
123
|
+
'merged_dts': (str,), # noqa: E501
|
|
124
|
+
'merged_into_auto_order_oid': (int,), # noqa: E501
|
|
122
125
|
'next_attempt': (str,), # noqa: E501
|
|
123
126
|
'original_order': (Order,), # noqa: E501
|
|
124
127
|
'original_order_id': (str,), # noqa: E501
|
|
@@ -152,6 +155,8 @@ class AutoOrder(ModelNormal):
|
|
|
152
155
|
'logs': 'logs', # noqa: E501
|
|
153
156
|
'management': 'management', # noqa: E501
|
|
154
157
|
'merchant_id': 'merchant_id', # noqa: E501
|
|
158
|
+
'merged_dts': 'merged_dts', # noqa: E501
|
|
159
|
+
'merged_into_auto_order_oid': 'merged_into_auto_order_oid', # noqa: E501
|
|
155
160
|
'next_attempt': 'next_attempt', # noqa: E501
|
|
156
161
|
'original_order': 'original_order', # noqa: E501
|
|
157
162
|
'original_order_id': 'original_order_id', # noqa: E501
|
|
@@ -220,6 +225,8 @@ class AutoOrder(ModelNormal):
|
|
|
220
225
|
logs ([AutoOrderLog]): Logs associated with this auto order. [optional] # noqa: E501
|
|
221
226
|
management (AutoOrderManagement): [optional] # noqa: E501
|
|
222
227
|
merchant_id (str): UltraCart merchant ID owning this order. [optional] # noqa: E501
|
|
228
|
+
merged_dts (str): The date/time the auto order was merged into another auto order. [optional] # noqa: E501
|
|
229
|
+
merged_into_auto_order_oid (int): The auto order that this auto order was merged into. [optional] # noqa: E501
|
|
223
230
|
next_attempt (str): The next time that the auto order will be attempted for processing. [optional] # noqa: E501
|
|
224
231
|
original_order (Order): [optional] # noqa: E501
|
|
225
232
|
original_order_id (str): The original order id that this auto order is associated with.. [optional] # noqa: E501
|
|
@@ -330,6 +337,8 @@ class AutoOrder(ModelNormal):
|
|
|
330
337
|
logs ([AutoOrderLog]): Logs associated with this auto order. [optional] # noqa: E501
|
|
331
338
|
management (AutoOrderManagement): [optional] # noqa: E501
|
|
332
339
|
merchant_id (str): UltraCart merchant ID owning this order. [optional] # noqa: E501
|
|
340
|
+
merged_dts (str): The date/time the auto order was merged into another auto order. [optional] # noqa: E501
|
|
341
|
+
merged_into_auto_order_oid (int): The auto order that this auto order was merged into. [optional] # noqa: E501
|
|
333
342
|
next_attempt (str): The next time that the auto order will be attempted for processing. [optional] # noqa: E501
|
|
334
343
|
original_order (Order): [optional] # noqa: E501
|
|
335
344
|
original_order_id (str): The original order id that this auto order is associated with.. [optional] # noqa: E501
|
|
@@ -0,0 +1,264 @@
|
|
|
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
|
+
|
|
34
|
+
class AutoOrderConsolidate(ModelNormal):
|
|
35
|
+
"""NOTE: This class is auto generated by OpenAPI Generator.
|
|
36
|
+
Ref: https://openapi-generator.tech
|
|
37
|
+
|
|
38
|
+
Do not edit the class manually.
|
|
39
|
+
|
|
40
|
+
Attributes:
|
|
41
|
+
allowed_values (dict): The key is the tuple path to the attribute
|
|
42
|
+
and the for var_name this is (var_name,). The value is a dict
|
|
43
|
+
with a capitalized key describing the allowed value and an allowed
|
|
44
|
+
value. These dicts store the allowed enum values.
|
|
45
|
+
attribute_map (dict): The key is attribute name
|
|
46
|
+
and the value is json key in definition.
|
|
47
|
+
discriminator_value_class_map (dict): A dict to go from the discriminator
|
|
48
|
+
variable value to the discriminator class name.
|
|
49
|
+
validations (dict): The key is the tuple path to the attribute
|
|
50
|
+
and the for var_name this is (var_name,). The value is a dict
|
|
51
|
+
that stores validations for max_length, min_length, max_items,
|
|
52
|
+
min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum,
|
|
53
|
+
inclusive_minimum, and regex.
|
|
54
|
+
additional_properties_type (tuple): A tuple of classes accepted
|
|
55
|
+
as additional properties values.
|
|
56
|
+
"""
|
|
57
|
+
|
|
58
|
+
allowed_values = {
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
validations = {
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
@cached_property
|
|
65
|
+
def additional_properties_type():
|
|
66
|
+
"""
|
|
67
|
+
This must be a method because a model may have properties that are
|
|
68
|
+
of type self, this must run after the class is loaded
|
|
69
|
+
"""
|
|
70
|
+
return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501
|
|
71
|
+
|
|
72
|
+
_nullable = False
|
|
73
|
+
|
|
74
|
+
@cached_property
|
|
75
|
+
def openapi_types():
|
|
76
|
+
"""
|
|
77
|
+
This must be a method because a model may have properties that are
|
|
78
|
+
of type self, this must run after the class is loaded
|
|
79
|
+
|
|
80
|
+
Returns
|
|
81
|
+
openapi_types (dict): The key is attribute name
|
|
82
|
+
and the value is attribute type.
|
|
83
|
+
"""
|
|
84
|
+
return {
|
|
85
|
+
'source_auto_order_oids': ([int],), # noqa: E501
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
@cached_property
|
|
89
|
+
def discriminator():
|
|
90
|
+
return None
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
attribute_map = {
|
|
94
|
+
'source_auto_order_oids': 'source_auto_order_oids', # noqa: E501
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
read_only_vars = {
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
_composed_schemas = {}
|
|
101
|
+
|
|
102
|
+
@classmethod
|
|
103
|
+
@convert_js_args_to_python_args
|
|
104
|
+
def _from_openapi_data(cls, *args, **kwargs): # noqa: E501
|
|
105
|
+
"""AutoOrderConsolidate - a model defined in OpenAPI
|
|
106
|
+
|
|
107
|
+
Keyword Args:
|
|
108
|
+
_check_type (bool): if True, values for parameters in openapi_types
|
|
109
|
+
will be type checked and a TypeError will be
|
|
110
|
+
raised if the wrong type is input.
|
|
111
|
+
Defaults to True
|
|
112
|
+
_path_to_item (tuple/list): This is a list of keys or values to
|
|
113
|
+
drill down to the model in received_data
|
|
114
|
+
when deserializing a response
|
|
115
|
+
_spec_property_naming (bool): True if the variable names in the input data
|
|
116
|
+
are serialized names, as specified in the OpenAPI document.
|
|
117
|
+
False if the variable names in the input data
|
|
118
|
+
are pythonic names, e.g. snake case (default)
|
|
119
|
+
_configuration (Configuration): the instance to use when
|
|
120
|
+
deserializing a file_type parameter.
|
|
121
|
+
If passed, type conversion is attempted
|
|
122
|
+
If omitted no type conversion is done.
|
|
123
|
+
_visited_composed_classes (tuple): This stores a tuple of
|
|
124
|
+
classes that we have traveled through so that
|
|
125
|
+
if we see that class again we will not use its
|
|
126
|
+
discriminator again.
|
|
127
|
+
When traveling through a discriminator, the
|
|
128
|
+
composed schema that is
|
|
129
|
+
is traveled through is added to this set.
|
|
130
|
+
For example if Animal has a discriminator
|
|
131
|
+
petType and we pass in "Dog", and the class Dog
|
|
132
|
+
allOf includes Animal, we move through Animal
|
|
133
|
+
once using the discriminator, and pick Dog.
|
|
134
|
+
Then in Dog, we will make an instance of the
|
|
135
|
+
Animal class but this time we won't travel
|
|
136
|
+
through its discriminator because we passed in
|
|
137
|
+
_visited_composed_classes = (Animal,)
|
|
138
|
+
source_auto_order_oids ([int]): [optional] # noqa: E501
|
|
139
|
+
"""
|
|
140
|
+
|
|
141
|
+
_check_type = kwargs.pop('_check_type', True)
|
|
142
|
+
_spec_property_naming = kwargs.pop('_spec_property_naming', True)
|
|
143
|
+
_path_to_item = kwargs.pop('_path_to_item', ())
|
|
144
|
+
_configuration = kwargs.pop('_configuration', None)
|
|
145
|
+
_visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
|
|
146
|
+
|
|
147
|
+
self = super(OpenApiModel, cls).__new__(cls)
|
|
148
|
+
|
|
149
|
+
if args:
|
|
150
|
+
for arg in args:
|
|
151
|
+
if isinstance(arg, dict):
|
|
152
|
+
kwargs.update(arg)
|
|
153
|
+
else:
|
|
154
|
+
raise ApiTypeError(
|
|
155
|
+
"Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
|
|
156
|
+
args,
|
|
157
|
+
self.__class__.__name__,
|
|
158
|
+
),
|
|
159
|
+
path_to_item=_path_to_item,
|
|
160
|
+
valid_classes=(self.__class__,),
|
|
161
|
+
)
|
|
162
|
+
|
|
163
|
+
self._data_store = {}
|
|
164
|
+
self._check_type = _check_type
|
|
165
|
+
self._spec_property_naming = _spec_property_naming
|
|
166
|
+
self._path_to_item = _path_to_item
|
|
167
|
+
self._configuration = _configuration
|
|
168
|
+
self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
|
|
169
|
+
|
|
170
|
+
for var_name, var_value in kwargs.items():
|
|
171
|
+
if var_name not in self.attribute_map and \
|
|
172
|
+
self._configuration is not None and \
|
|
173
|
+
self._configuration.discard_unknown_keys and \
|
|
174
|
+
self.additional_properties_type is None:
|
|
175
|
+
# discard variable.
|
|
176
|
+
continue
|
|
177
|
+
setattr(self, var_name, var_value)
|
|
178
|
+
return self
|
|
179
|
+
|
|
180
|
+
required_properties = set([
|
|
181
|
+
'_data_store',
|
|
182
|
+
'_check_type',
|
|
183
|
+
'_spec_property_naming',
|
|
184
|
+
'_path_to_item',
|
|
185
|
+
'_configuration',
|
|
186
|
+
'_visited_composed_classes',
|
|
187
|
+
])
|
|
188
|
+
|
|
189
|
+
@convert_js_args_to_python_args
|
|
190
|
+
def __init__(self, *args, **kwargs): # noqa: E501
|
|
191
|
+
"""AutoOrderConsolidate - a model defined in OpenAPI
|
|
192
|
+
|
|
193
|
+
Keyword Args:
|
|
194
|
+
_check_type (bool): if True, values for parameters in openapi_types
|
|
195
|
+
will be type checked and a TypeError will be
|
|
196
|
+
raised if the wrong type is input.
|
|
197
|
+
Defaults to True
|
|
198
|
+
_path_to_item (tuple/list): This is a list of keys or values to
|
|
199
|
+
drill down to the model in received_data
|
|
200
|
+
when deserializing a response
|
|
201
|
+
_spec_property_naming (bool): True if the variable names in the input data
|
|
202
|
+
are serialized names, as specified in the OpenAPI document.
|
|
203
|
+
False if the variable names in the input data
|
|
204
|
+
are pythonic names, e.g. snake case (default)
|
|
205
|
+
_configuration (Configuration): the instance to use when
|
|
206
|
+
deserializing a file_type parameter.
|
|
207
|
+
If passed, type conversion is attempted
|
|
208
|
+
If omitted no type conversion is done.
|
|
209
|
+
_visited_composed_classes (tuple): This stores a tuple of
|
|
210
|
+
classes that we have traveled through so that
|
|
211
|
+
if we see that class again we will not use its
|
|
212
|
+
discriminator again.
|
|
213
|
+
When traveling through a discriminator, the
|
|
214
|
+
composed schema that is
|
|
215
|
+
is traveled through is added to this set.
|
|
216
|
+
For example if Animal has a discriminator
|
|
217
|
+
petType and we pass in "Dog", and the class Dog
|
|
218
|
+
allOf includes Animal, we move through Animal
|
|
219
|
+
once using the discriminator, and pick Dog.
|
|
220
|
+
Then in Dog, we will make an instance of the
|
|
221
|
+
Animal class but this time we won't travel
|
|
222
|
+
through its discriminator because we passed in
|
|
223
|
+
_visited_composed_classes = (Animal,)
|
|
224
|
+
source_auto_order_oids ([int]): [optional] # noqa: E501
|
|
225
|
+
"""
|
|
226
|
+
|
|
227
|
+
_check_type = kwargs.pop('_check_type', True)
|
|
228
|
+
_spec_property_naming = kwargs.pop('_spec_property_naming', False)
|
|
229
|
+
_path_to_item = kwargs.pop('_path_to_item', ())
|
|
230
|
+
_configuration = kwargs.pop('_configuration', None)
|
|
231
|
+
_visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
|
|
232
|
+
|
|
233
|
+
if args:
|
|
234
|
+
for arg in args:
|
|
235
|
+
if isinstance(arg, dict):
|
|
236
|
+
kwargs.update(arg)
|
|
237
|
+
else:
|
|
238
|
+
raise ApiTypeError(
|
|
239
|
+
"Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
|
|
240
|
+
args,
|
|
241
|
+
self.__class__.__name__,
|
|
242
|
+
),
|
|
243
|
+
path_to_item=_path_to_item,
|
|
244
|
+
valid_classes=(self.__class__,),
|
|
245
|
+
)
|
|
246
|
+
|
|
247
|
+
self._data_store = {}
|
|
248
|
+
self._check_type = _check_type
|
|
249
|
+
self._spec_property_naming = _spec_property_naming
|
|
250
|
+
self._path_to_item = _path_to_item
|
|
251
|
+
self._configuration = _configuration
|
|
252
|
+
self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
|
|
253
|
+
|
|
254
|
+
for var_name, var_value in kwargs.items():
|
|
255
|
+
if var_name not in self.attribute_map and \
|
|
256
|
+
self._configuration is not None and \
|
|
257
|
+
self._configuration.discard_unknown_keys and \
|
|
258
|
+
self.additional_properties_type is None:
|
|
259
|
+
# discard variable.
|
|
260
|
+
continue
|
|
261
|
+
setattr(self, var_name, var_value)
|
|
262
|
+
if var_name in self.read_only_vars:
|
|
263
|
+
raise ApiAttributeError(f"`{var_name}` is a read-only attribute. Use `from_openapi_data` to instantiate "
|
|
264
|
+
f"class with read only attributes.")
|
|
@@ -0,0 +1,268 @@
|
|
|
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
|
+
|
|
34
|
+
class ConversationPbxAudioUploadUrl(ModelNormal):
|
|
35
|
+
"""NOTE: This class is auto generated by OpenAPI Generator.
|
|
36
|
+
Ref: https://openapi-generator.tech
|
|
37
|
+
|
|
38
|
+
Do not edit the class manually.
|
|
39
|
+
|
|
40
|
+
Attributes:
|
|
41
|
+
allowed_values (dict): The key is the tuple path to the attribute
|
|
42
|
+
and the for var_name this is (var_name,). The value is a dict
|
|
43
|
+
with a capitalized key describing the allowed value and an allowed
|
|
44
|
+
value. These dicts store the allowed enum values.
|
|
45
|
+
attribute_map (dict): The key is attribute name
|
|
46
|
+
and the value is json key in definition.
|
|
47
|
+
discriminator_value_class_map (dict): A dict to go from the discriminator
|
|
48
|
+
variable value to the discriminator class name.
|
|
49
|
+
validations (dict): The key is the tuple path to the attribute
|
|
50
|
+
and the for var_name this is (var_name,). The value is a dict
|
|
51
|
+
that stores validations for max_length, min_length, max_items,
|
|
52
|
+
min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum,
|
|
53
|
+
inclusive_minimum, and regex.
|
|
54
|
+
additional_properties_type (tuple): A tuple of classes accepted
|
|
55
|
+
as additional properties values.
|
|
56
|
+
"""
|
|
57
|
+
|
|
58
|
+
allowed_values = {
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
validations = {
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
@cached_property
|
|
65
|
+
def additional_properties_type():
|
|
66
|
+
"""
|
|
67
|
+
This must be a method because a model may have properties that are
|
|
68
|
+
of type self, this must run after the class is loaded
|
|
69
|
+
"""
|
|
70
|
+
return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501
|
|
71
|
+
|
|
72
|
+
_nullable = False
|
|
73
|
+
|
|
74
|
+
@cached_property
|
|
75
|
+
def openapi_types():
|
|
76
|
+
"""
|
|
77
|
+
This must be a method because a model may have properties that are
|
|
78
|
+
of type self, this must run after the class is loaded
|
|
79
|
+
|
|
80
|
+
Returns
|
|
81
|
+
openapi_types (dict): The key is attribute name
|
|
82
|
+
and the value is attribute type.
|
|
83
|
+
"""
|
|
84
|
+
return {
|
|
85
|
+
'key': (str,), # noqa: E501
|
|
86
|
+
'url': (str,), # noqa: E501
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
@cached_property
|
|
90
|
+
def discriminator():
|
|
91
|
+
return None
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
attribute_map = {
|
|
95
|
+
'key': 'key', # noqa: E501
|
|
96
|
+
'url': 'url', # noqa: E501
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
read_only_vars = {
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
_composed_schemas = {}
|
|
103
|
+
|
|
104
|
+
@classmethod
|
|
105
|
+
@convert_js_args_to_python_args
|
|
106
|
+
def _from_openapi_data(cls, *args, **kwargs): # noqa: E501
|
|
107
|
+
"""ConversationPbxAudioUploadUrl - a model defined in OpenAPI
|
|
108
|
+
|
|
109
|
+
Keyword Args:
|
|
110
|
+
_check_type (bool): if True, values for parameters in openapi_types
|
|
111
|
+
will be type checked and a TypeError will be
|
|
112
|
+
raised if the wrong type is input.
|
|
113
|
+
Defaults to True
|
|
114
|
+
_path_to_item (tuple/list): This is a list of keys or values to
|
|
115
|
+
drill down to the model in received_data
|
|
116
|
+
when deserializing a response
|
|
117
|
+
_spec_property_naming (bool): True if the variable names in the input data
|
|
118
|
+
are serialized names, as specified in the OpenAPI document.
|
|
119
|
+
False if the variable names in the input data
|
|
120
|
+
are pythonic names, e.g. snake case (default)
|
|
121
|
+
_configuration (Configuration): the instance to use when
|
|
122
|
+
deserializing a file_type parameter.
|
|
123
|
+
If passed, type conversion is attempted
|
|
124
|
+
If omitted no type conversion is done.
|
|
125
|
+
_visited_composed_classes (tuple): This stores a tuple of
|
|
126
|
+
classes that we have traveled through so that
|
|
127
|
+
if we see that class again we will not use its
|
|
128
|
+
discriminator again.
|
|
129
|
+
When traveling through a discriminator, the
|
|
130
|
+
composed schema that is
|
|
131
|
+
is traveled through is added to this set.
|
|
132
|
+
For example if Animal has a discriminator
|
|
133
|
+
petType and we pass in "Dog", and the class Dog
|
|
134
|
+
allOf includes Animal, we move through Animal
|
|
135
|
+
once using the discriminator, and pick Dog.
|
|
136
|
+
Then in Dog, we will make an instance of the
|
|
137
|
+
Animal class but this time we won't travel
|
|
138
|
+
through its discriminator because we passed in
|
|
139
|
+
_visited_composed_classes = (Animal,)
|
|
140
|
+
key (str): [optional] # noqa: E501
|
|
141
|
+
url (str): [optional] # noqa: E501
|
|
142
|
+
"""
|
|
143
|
+
|
|
144
|
+
_check_type = kwargs.pop('_check_type', True)
|
|
145
|
+
_spec_property_naming = kwargs.pop('_spec_property_naming', True)
|
|
146
|
+
_path_to_item = kwargs.pop('_path_to_item', ())
|
|
147
|
+
_configuration = kwargs.pop('_configuration', None)
|
|
148
|
+
_visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
|
|
149
|
+
|
|
150
|
+
self = super(OpenApiModel, cls).__new__(cls)
|
|
151
|
+
|
|
152
|
+
if args:
|
|
153
|
+
for arg in args:
|
|
154
|
+
if isinstance(arg, dict):
|
|
155
|
+
kwargs.update(arg)
|
|
156
|
+
else:
|
|
157
|
+
raise ApiTypeError(
|
|
158
|
+
"Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
|
|
159
|
+
args,
|
|
160
|
+
self.__class__.__name__,
|
|
161
|
+
),
|
|
162
|
+
path_to_item=_path_to_item,
|
|
163
|
+
valid_classes=(self.__class__,),
|
|
164
|
+
)
|
|
165
|
+
|
|
166
|
+
self._data_store = {}
|
|
167
|
+
self._check_type = _check_type
|
|
168
|
+
self._spec_property_naming = _spec_property_naming
|
|
169
|
+
self._path_to_item = _path_to_item
|
|
170
|
+
self._configuration = _configuration
|
|
171
|
+
self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
|
|
172
|
+
|
|
173
|
+
for var_name, var_value in kwargs.items():
|
|
174
|
+
if var_name not in self.attribute_map and \
|
|
175
|
+
self._configuration is not None and \
|
|
176
|
+
self._configuration.discard_unknown_keys and \
|
|
177
|
+
self.additional_properties_type is None:
|
|
178
|
+
# discard variable.
|
|
179
|
+
continue
|
|
180
|
+
setattr(self, var_name, var_value)
|
|
181
|
+
return self
|
|
182
|
+
|
|
183
|
+
required_properties = set([
|
|
184
|
+
'_data_store',
|
|
185
|
+
'_check_type',
|
|
186
|
+
'_spec_property_naming',
|
|
187
|
+
'_path_to_item',
|
|
188
|
+
'_configuration',
|
|
189
|
+
'_visited_composed_classes',
|
|
190
|
+
])
|
|
191
|
+
|
|
192
|
+
@convert_js_args_to_python_args
|
|
193
|
+
def __init__(self, *args, **kwargs): # noqa: E501
|
|
194
|
+
"""ConversationPbxAudioUploadUrl - a model defined in OpenAPI
|
|
195
|
+
|
|
196
|
+
Keyword Args:
|
|
197
|
+
_check_type (bool): if True, values for parameters in openapi_types
|
|
198
|
+
will be type checked and a TypeError will be
|
|
199
|
+
raised if the wrong type is input.
|
|
200
|
+
Defaults to True
|
|
201
|
+
_path_to_item (tuple/list): This is a list of keys or values to
|
|
202
|
+
drill down to the model in received_data
|
|
203
|
+
when deserializing a response
|
|
204
|
+
_spec_property_naming (bool): True if the variable names in the input data
|
|
205
|
+
are serialized names, as specified in the OpenAPI document.
|
|
206
|
+
False if the variable names in the input data
|
|
207
|
+
are pythonic names, e.g. snake case (default)
|
|
208
|
+
_configuration (Configuration): the instance to use when
|
|
209
|
+
deserializing a file_type parameter.
|
|
210
|
+
If passed, type conversion is attempted
|
|
211
|
+
If omitted no type conversion is done.
|
|
212
|
+
_visited_composed_classes (tuple): This stores a tuple of
|
|
213
|
+
classes that we have traveled through so that
|
|
214
|
+
if we see that class again we will not use its
|
|
215
|
+
discriminator again.
|
|
216
|
+
When traveling through a discriminator, the
|
|
217
|
+
composed schema that is
|
|
218
|
+
is traveled through is added to this set.
|
|
219
|
+
For example if Animal has a discriminator
|
|
220
|
+
petType and we pass in "Dog", and the class Dog
|
|
221
|
+
allOf includes Animal, we move through Animal
|
|
222
|
+
once using the discriminator, and pick Dog.
|
|
223
|
+
Then in Dog, we will make an instance of the
|
|
224
|
+
Animal class but this time we won't travel
|
|
225
|
+
through its discriminator because we passed in
|
|
226
|
+
_visited_composed_classes = (Animal,)
|
|
227
|
+
key (str): [optional] # noqa: E501
|
|
228
|
+
url (str): [optional] # noqa: E501
|
|
229
|
+
"""
|
|
230
|
+
|
|
231
|
+
_check_type = kwargs.pop('_check_type', True)
|
|
232
|
+
_spec_property_naming = kwargs.pop('_spec_property_naming', False)
|
|
233
|
+
_path_to_item = kwargs.pop('_path_to_item', ())
|
|
234
|
+
_configuration = kwargs.pop('_configuration', None)
|
|
235
|
+
_visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
|
|
236
|
+
|
|
237
|
+
if args:
|
|
238
|
+
for arg in args:
|
|
239
|
+
if isinstance(arg, dict):
|
|
240
|
+
kwargs.update(arg)
|
|
241
|
+
else:
|
|
242
|
+
raise ApiTypeError(
|
|
243
|
+
"Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
|
|
244
|
+
args,
|
|
245
|
+
self.__class__.__name__,
|
|
246
|
+
),
|
|
247
|
+
path_to_item=_path_to_item,
|
|
248
|
+
valid_classes=(self.__class__,),
|
|
249
|
+
)
|
|
250
|
+
|
|
251
|
+
self._data_store = {}
|
|
252
|
+
self._check_type = _check_type
|
|
253
|
+
self._spec_property_naming = _spec_property_naming
|
|
254
|
+
self._path_to_item = _path_to_item
|
|
255
|
+
self._configuration = _configuration
|
|
256
|
+
self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
|
|
257
|
+
|
|
258
|
+
for var_name, var_value in kwargs.items():
|
|
259
|
+
if var_name not in self.attribute_map and \
|
|
260
|
+
self._configuration is not None and \
|
|
261
|
+
self._configuration.discard_unknown_keys and \
|
|
262
|
+
self.additional_properties_type is None:
|
|
263
|
+
# discard variable.
|
|
264
|
+
continue
|
|
265
|
+
setattr(self, var_name, var_value)
|
|
266
|
+
if var_name in self.read_only_vars:
|
|
267
|
+
raise ApiAttributeError(f"`{var_name}` is a read-only attribute. Use `from_openapi_data` to instantiate "
|
|
268
|
+
f"class with read only attributes.")
|
|
@@ -0,0 +1,292 @@
|
|
|
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_audio_upload_url import ConversationPbxAudioUploadUrl
|
|
35
|
+
from ultracart.model.error import Error
|
|
36
|
+
from ultracart.model.response_metadata import ResponseMetadata
|
|
37
|
+
from ultracart.model.warning import Warning
|
|
38
|
+
globals()['ConversationPbxAudioUploadUrl'] = ConversationPbxAudioUploadUrl
|
|
39
|
+
globals()['Error'] = Error
|
|
40
|
+
globals()['ResponseMetadata'] = ResponseMetadata
|
|
41
|
+
globals()['Warning'] = Warning
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
class ConversationPbxAudioUploadUrlResponse(ModelNormal):
|
|
45
|
+
"""NOTE: This class is auto generated by OpenAPI Generator.
|
|
46
|
+
Ref: https://openapi-generator.tech
|
|
47
|
+
|
|
48
|
+
Do not edit the class manually.
|
|
49
|
+
|
|
50
|
+
Attributes:
|
|
51
|
+
allowed_values (dict): The key is the tuple path to the attribute
|
|
52
|
+
and the for var_name this is (var_name,). The value is a dict
|
|
53
|
+
with a capitalized key describing the allowed value and an allowed
|
|
54
|
+
value. These dicts store the allowed enum values.
|
|
55
|
+
attribute_map (dict): The key is attribute name
|
|
56
|
+
and the value is json key in definition.
|
|
57
|
+
discriminator_value_class_map (dict): A dict to go from the discriminator
|
|
58
|
+
variable value to the discriminator class name.
|
|
59
|
+
validations (dict): The key is the tuple path to the attribute
|
|
60
|
+
and the for var_name this is (var_name,). The value is a dict
|
|
61
|
+
that stores validations for max_length, min_length, max_items,
|
|
62
|
+
min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum,
|
|
63
|
+
inclusive_minimum, and regex.
|
|
64
|
+
additional_properties_type (tuple): A tuple of classes accepted
|
|
65
|
+
as additional properties values.
|
|
66
|
+
"""
|
|
67
|
+
|
|
68
|
+
allowed_values = {
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
validations = {
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
@cached_property
|
|
75
|
+
def additional_properties_type():
|
|
76
|
+
"""
|
|
77
|
+
This must be a method because a model may have properties that are
|
|
78
|
+
of type self, this must run after the class is loaded
|
|
79
|
+
"""
|
|
80
|
+
lazy_import()
|
|
81
|
+
return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501
|
|
82
|
+
|
|
83
|
+
_nullable = False
|
|
84
|
+
|
|
85
|
+
@cached_property
|
|
86
|
+
def openapi_types():
|
|
87
|
+
"""
|
|
88
|
+
This must be a method because a model may have properties that are
|
|
89
|
+
of type self, this must run after the class is loaded
|
|
90
|
+
|
|
91
|
+
Returns
|
|
92
|
+
openapi_types (dict): The key is attribute name
|
|
93
|
+
and the value is attribute type.
|
|
94
|
+
"""
|
|
95
|
+
lazy_import()
|
|
96
|
+
return {
|
|
97
|
+
'conversation_pbx_audio_upload_url': (ConversationPbxAudioUploadUrl,), # noqa: E501
|
|
98
|
+
'error': (Error,), # noqa: E501
|
|
99
|
+
'metadata': (ResponseMetadata,), # noqa: E501
|
|
100
|
+
'success': (bool,), # noqa: E501
|
|
101
|
+
'warning': (Warning,), # noqa: E501
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
@cached_property
|
|
105
|
+
def discriminator():
|
|
106
|
+
return None
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
attribute_map = {
|
|
110
|
+
'conversation_pbx_audio_upload_url': 'conversation_pbx_audio_upload_url', # noqa: E501
|
|
111
|
+
'error': 'error', # noqa: E501
|
|
112
|
+
'metadata': 'metadata', # noqa: E501
|
|
113
|
+
'success': 'success', # noqa: E501
|
|
114
|
+
'warning': 'warning', # noqa: E501
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
read_only_vars = {
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
_composed_schemas = {}
|
|
121
|
+
|
|
122
|
+
@classmethod
|
|
123
|
+
@convert_js_args_to_python_args
|
|
124
|
+
def _from_openapi_data(cls, *args, **kwargs): # noqa: E501
|
|
125
|
+
"""ConversationPbxAudioUploadUrlResponse - a model defined in OpenAPI
|
|
126
|
+
|
|
127
|
+
Keyword Args:
|
|
128
|
+
_check_type (bool): if True, values for parameters in openapi_types
|
|
129
|
+
will be type checked and a TypeError will be
|
|
130
|
+
raised if the wrong type is input.
|
|
131
|
+
Defaults to True
|
|
132
|
+
_path_to_item (tuple/list): This is a list of keys or values to
|
|
133
|
+
drill down to the model in received_data
|
|
134
|
+
when deserializing a response
|
|
135
|
+
_spec_property_naming (bool): True if the variable names in the input data
|
|
136
|
+
are serialized names, as specified in the OpenAPI document.
|
|
137
|
+
False if the variable names in the input data
|
|
138
|
+
are pythonic names, e.g. snake case (default)
|
|
139
|
+
_configuration (Configuration): the instance to use when
|
|
140
|
+
deserializing a file_type parameter.
|
|
141
|
+
If passed, type conversion is attempted
|
|
142
|
+
If omitted no type conversion is done.
|
|
143
|
+
_visited_composed_classes (tuple): This stores a tuple of
|
|
144
|
+
classes that we have traveled through so that
|
|
145
|
+
if we see that class again we will not use its
|
|
146
|
+
discriminator again.
|
|
147
|
+
When traveling through a discriminator, the
|
|
148
|
+
composed schema that is
|
|
149
|
+
is traveled through is added to this set.
|
|
150
|
+
For example if Animal has a discriminator
|
|
151
|
+
petType and we pass in "Dog", and the class Dog
|
|
152
|
+
allOf includes Animal, we move through Animal
|
|
153
|
+
once using the discriminator, and pick Dog.
|
|
154
|
+
Then in Dog, we will make an instance of the
|
|
155
|
+
Animal class but this time we won't travel
|
|
156
|
+
through its discriminator because we passed in
|
|
157
|
+
_visited_composed_classes = (Animal,)
|
|
158
|
+
conversation_pbx_audio_upload_url (ConversationPbxAudioUploadUrl): [optional] # noqa: E501
|
|
159
|
+
error (Error): [optional] # noqa: E501
|
|
160
|
+
metadata (ResponseMetadata): [optional] # noqa: E501
|
|
161
|
+
success (bool): Indicates if API call was successful. [optional] # noqa: E501
|
|
162
|
+
warning (Warning): [optional] # noqa: E501
|
|
163
|
+
"""
|
|
164
|
+
|
|
165
|
+
_check_type = kwargs.pop('_check_type', True)
|
|
166
|
+
_spec_property_naming = kwargs.pop('_spec_property_naming', True)
|
|
167
|
+
_path_to_item = kwargs.pop('_path_to_item', ())
|
|
168
|
+
_configuration = kwargs.pop('_configuration', None)
|
|
169
|
+
_visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
|
|
170
|
+
|
|
171
|
+
self = super(OpenApiModel, cls).__new__(cls)
|
|
172
|
+
|
|
173
|
+
if args:
|
|
174
|
+
for arg in args:
|
|
175
|
+
if isinstance(arg, dict):
|
|
176
|
+
kwargs.update(arg)
|
|
177
|
+
else:
|
|
178
|
+
raise ApiTypeError(
|
|
179
|
+
"Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
|
|
180
|
+
args,
|
|
181
|
+
self.__class__.__name__,
|
|
182
|
+
),
|
|
183
|
+
path_to_item=_path_to_item,
|
|
184
|
+
valid_classes=(self.__class__,),
|
|
185
|
+
)
|
|
186
|
+
|
|
187
|
+
self._data_store = {}
|
|
188
|
+
self._check_type = _check_type
|
|
189
|
+
self._spec_property_naming = _spec_property_naming
|
|
190
|
+
self._path_to_item = _path_to_item
|
|
191
|
+
self._configuration = _configuration
|
|
192
|
+
self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
|
|
193
|
+
|
|
194
|
+
for var_name, var_value in kwargs.items():
|
|
195
|
+
if var_name not in self.attribute_map and \
|
|
196
|
+
self._configuration is not None and \
|
|
197
|
+
self._configuration.discard_unknown_keys and \
|
|
198
|
+
self.additional_properties_type is None:
|
|
199
|
+
# discard variable.
|
|
200
|
+
continue
|
|
201
|
+
setattr(self, var_name, var_value)
|
|
202
|
+
return self
|
|
203
|
+
|
|
204
|
+
required_properties = set([
|
|
205
|
+
'_data_store',
|
|
206
|
+
'_check_type',
|
|
207
|
+
'_spec_property_naming',
|
|
208
|
+
'_path_to_item',
|
|
209
|
+
'_configuration',
|
|
210
|
+
'_visited_composed_classes',
|
|
211
|
+
])
|
|
212
|
+
|
|
213
|
+
@convert_js_args_to_python_args
|
|
214
|
+
def __init__(self, *args, **kwargs): # noqa: E501
|
|
215
|
+
"""ConversationPbxAudioUploadUrlResponse - a model defined in OpenAPI
|
|
216
|
+
|
|
217
|
+
Keyword Args:
|
|
218
|
+
_check_type (bool): if True, values for parameters in openapi_types
|
|
219
|
+
will be type checked and a TypeError will be
|
|
220
|
+
raised if the wrong type is input.
|
|
221
|
+
Defaults to True
|
|
222
|
+
_path_to_item (tuple/list): This is a list of keys or values to
|
|
223
|
+
drill down to the model in received_data
|
|
224
|
+
when deserializing a response
|
|
225
|
+
_spec_property_naming (bool): True if the variable names in the input data
|
|
226
|
+
are serialized names, as specified in the OpenAPI document.
|
|
227
|
+
False if the variable names in the input data
|
|
228
|
+
are pythonic names, e.g. snake case (default)
|
|
229
|
+
_configuration (Configuration): the instance to use when
|
|
230
|
+
deserializing a file_type parameter.
|
|
231
|
+
If passed, type conversion is attempted
|
|
232
|
+
If omitted no type conversion is done.
|
|
233
|
+
_visited_composed_classes (tuple): This stores a tuple of
|
|
234
|
+
classes that we have traveled through so that
|
|
235
|
+
if we see that class again we will not use its
|
|
236
|
+
discriminator again.
|
|
237
|
+
When traveling through a discriminator, the
|
|
238
|
+
composed schema that is
|
|
239
|
+
is traveled through is added to this set.
|
|
240
|
+
For example if Animal has a discriminator
|
|
241
|
+
petType and we pass in "Dog", and the class Dog
|
|
242
|
+
allOf includes Animal, we move through Animal
|
|
243
|
+
once using the discriminator, and pick Dog.
|
|
244
|
+
Then in Dog, we will make an instance of the
|
|
245
|
+
Animal class but this time we won't travel
|
|
246
|
+
through its discriminator because we passed in
|
|
247
|
+
_visited_composed_classes = (Animal,)
|
|
248
|
+
conversation_pbx_audio_upload_url (ConversationPbxAudioUploadUrl): [optional] # noqa: E501
|
|
249
|
+
error (Error): [optional] # noqa: E501
|
|
250
|
+
metadata (ResponseMetadata): [optional] # noqa: E501
|
|
251
|
+
success (bool): Indicates if API call was successful. [optional] # noqa: E501
|
|
252
|
+
warning (Warning): [optional] # noqa: E501
|
|
253
|
+
"""
|
|
254
|
+
|
|
255
|
+
_check_type = kwargs.pop('_check_type', True)
|
|
256
|
+
_spec_property_naming = kwargs.pop('_spec_property_naming', False)
|
|
257
|
+
_path_to_item = kwargs.pop('_path_to_item', ())
|
|
258
|
+
_configuration = kwargs.pop('_configuration', None)
|
|
259
|
+
_visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
|
|
260
|
+
|
|
261
|
+
if args:
|
|
262
|
+
for arg in args:
|
|
263
|
+
if isinstance(arg, dict):
|
|
264
|
+
kwargs.update(arg)
|
|
265
|
+
else:
|
|
266
|
+
raise ApiTypeError(
|
|
267
|
+
"Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
|
|
268
|
+
args,
|
|
269
|
+
self.__class__.__name__,
|
|
270
|
+
),
|
|
271
|
+
path_to_item=_path_to_item,
|
|
272
|
+
valid_classes=(self.__class__,),
|
|
273
|
+
)
|
|
274
|
+
|
|
275
|
+
self._data_store = {}
|
|
276
|
+
self._check_type = _check_type
|
|
277
|
+
self._spec_property_naming = _spec_property_naming
|
|
278
|
+
self._path_to_item = _path_to_item
|
|
279
|
+
self._configuration = _configuration
|
|
280
|
+
self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
|
|
281
|
+
|
|
282
|
+
for var_name, var_value in kwargs.items():
|
|
283
|
+
if var_name not in self.attribute_map and \
|
|
284
|
+
self._configuration is not None and \
|
|
285
|
+
self._configuration.discard_unknown_keys and \
|
|
286
|
+
self.additional_properties_type is None:
|
|
287
|
+
# discard variable.
|
|
288
|
+
continue
|
|
289
|
+
setattr(self, var_name, var_value)
|
|
290
|
+
if var_name in self.read_only_vars:
|
|
291
|
+
raise ApiAttributeError(f"`{var_name}` is a read-only attribute. Use `from_openapi_data` to instantiate "
|
|
292
|
+
f"class with read only attributes.")
|
|
@@ -99,7 +99,7 @@ class ConversationPbxCustomerSnapshotResponse(ModelNormal):
|
|
|
99
99
|
lazy_import()
|
|
100
100
|
return {
|
|
101
101
|
'auto_orders': ([AutoOrder],), # noqa: E501
|
|
102
|
-
'
|
|
102
|
+
'customers': ([Customer],), # noqa: E501
|
|
103
103
|
'error': (Error,), # noqa: E501
|
|
104
104
|
'metadata': (ResponseMetadata,), # noqa: E501
|
|
105
105
|
'orders': ([Order],), # noqa: E501
|
|
@@ -114,7 +114,7 @@ class ConversationPbxCustomerSnapshotResponse(ModelNormal):
|
|
|
114
114
|
|
|
115
115
|
attribute_map = {
|
|
116
116
|
'auto_orders': 'auto_orders', # noqa: E501
|
|
117
|
-
'
|
|
117
|
+
'customers': 'customers', # noqa: E501
|
|
118
118
|
'error': 'error', # noqa: E501
|
|
119
119
|
'metadata': 'metadata', # noqa: E501
|
|
120
120
|
'orders': 'orders', # noqa: E501
|
|
@@ -164,7 +164,7 @@ class ConversationPbxCustomerSnapshotResponse(ModelNormal):
|
|
|
164
164
|
through its discriminator because we passed in
|
|
165
165
|
_visited_composed_classes = (Animal,)
|
|
166
166
|
auto_orders ([AutoOrder]): [optional] # noqa: E501
|
|
167
|
-
|
|
167
|
+
customers ([Customer]): [optional] # noqa: E501
|
|
168
168
|
error (Error): [optional] # noqa: E501
|
|
169
169
|
metadata (ResponseMetadata): [optional] # noqa: E501
|
|
170
170
|
orders ([Order]): [optional] # noqa: E501
|
|
@@ -256,7 +256,7 @@ class ConversationPbxCustomerSnapshotResponse(ModelNormal):
|
|
|
256
256
|
through its discriminator because we passed in
|
|
257
257
|
_visited_composed_classes = (Animal,)
|
|
258
258
|
auto_orders ([AutoOrder]): [optional] # noqa: E501
|
|
259
|
-
|
|
259
|
+
customers ([Customer]): [optional] # noqa: E501
|
|
260
260
|
error (Error): [optional] # noqa: E501
|
|
261
261
|
metadata (ResponseMetadata): [optional] # noqa: E501
|
|
262
262
|
orders ([Order]): [optional] # noqa: E501
|
ultracart/models/__init__.py
CHANGED
|
@@ -34,6 +34,7 @@ from ultracart.model.apply_library_item_response import ApplyLibraryItemResponse
|
|
|
34
34
|
from ultracart.model.auto_order import AutoOrder
|
|
35
35
|
from ultracart.model.auto_order_addon_item import AutoOrderAddonItem
|
|
36
36
|
from ultracart.model.auto_order_addon_item_option import AutoOrderAddonItemOption
|
|
37
|
+
from ultracart.model.auto_order_consolidate import AutoOrderConsolidate
|
|
37
38
|
from ultracart.model.auto_order_item import AutoOrderItem
|
|
38
39
|
from ultracart.model.auto_order_item_future_schedule import AutoOrderItemFutureSchedule
|
|
39
40
|
from ultracart.model.auto_order_item_option import AutoOrderItemOption
|
|
@@ -182,6 +183,8 @@ from ultracart.model.conversation_pbx_agent_response import ConversationPbxAgent
|
|
|
182
183
|
from ultracart.model.conversation_pbx_agents_response import ConversationPbxAgentsResponse
|
|
183
184
|
from ultracart.model.conversation_pbx_audio import ConversationPbxAudio
|
|
184
185
|
from ultracart.model.conversation_pbx_audio_response import ConversationPbxAudioResponse
|
|
186
|
+
from ultracart.model.conversation_pbx_audio_upload_url import ConversationPbxAudioUploadUrl
|
|
187
|
+
from ultracart.model.conversation_pbx_audio_upload_url_response import ConversationPbxAudioUploadUrlResponse
|
|
185
188
|
from ultracart.model.conversation_pbx_audios_response import ConversationPbxAudiosResponse
|
|
186
189
|
from ultracart.model.conversation_pbx_customer_snapshot_request import ConversationPbxCustomerSnapshotRequest
|
|
187
190
|
from ultracart.model.conversation_pbx_customer_snapshot_response import ConversationPbxCustomerSnapshotResponse
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
ultracart/__init__.py,sha256=
|
|
2
|
-
ultracart/api_client.py,sha256=
|
|
3
|
-
ultracart/configuration.py,sha256=
|
|
1
|
+
ultracart/__init__.py,sha256=T2KBCOQ-ZBYm1CAtEYF08HD6RtwyHAXWA8lMUuu7FKQ,699
|
|
2
|
+
ultracart/api_client.py,sha256=sOsNZOJnGzEzaU_caagAs9SPGKRLDZW7Dzt9aO4W5TA,39072
|
|
3
|
+
ultracart/configuration.py,sha256=JjpudD81ElbwNYKxwGGtLcpXq0dxGPJnM1ZrAggAtxE,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
|
|
7
7
|
ultracart/api/__init__.py,sha256=M5v24jKFBCCBje15G0udcVQwqNCZsFU_-JgIf55tAP8,215
|
|
8
8
|
ultracart/api/affiliate_api.py,sha256=Rq7y9AAmN2gOT57qTulnMkr-W4SBboMrzKyM2SXT6R8,14519
|
|
9
|
-
ultracart/api/auto_order_api.py,sha256=
|
|
9
|
+
ultracart/api/auto_order_api.py,sha256=PrBsBkt6uneTf07QHlF5kipjzGlbT44LMOP5pthc61w,66174
|
|
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=JLEB5PVY2mzv2dl8motzBhxg_NInQkmIqC2Tgmphz4Q,458196
|
|
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
|
|
@@ -50,9 +50,10 @@ ultracart/model/affiliate_link.py,sha256=7-uKorHwxIdCjLJ7JbuXCqqjAhB7qG8E_Xl1VMb
|
|
|
50
50
|
ultracart/model/api_user_application_profile.py,sha256=3Sxhy1ik5Q7V2q9WUAqGeM-sMnzwrS97LDUUeBjm0wM,12706
|
|
51
51
|
ultracart/model/apply_library_item_request.py,sha256=hSLU1jVcNPL7l5RQ3TsAmTP2TFqEwm8kqHfT4n0Nkdw,12987
|
|
52
52
|
ultracart/model/apply_library_item_response.py,sha256=cmBteAFEixzDwZZ-uyMl34WWjozbYw7jHSUSNKuoR50,15428
|
|
53
|
-
ultracart/model/auto_order.py,sha256
|
|
53
|
+
ultracart/model/auto_order.py,sha256=BB_fJT2nsg47A4BAjKTYHxby8bn-UGr1wAuCpNps5ns,21172
|
|
54
54
|
ultracart/model/auto_order_addon_item.py,sha256=bj3m5w0E5dnlV079lNqpABG4UPuRS5jDV3Fe0V12ASs,12875
|
|
55
55
|
ultracart/model/auto_order_addon_item_option.py,sha256=YbtpPdYXTssJ-PaNTVVOYOihcpm-2xcSkM-Uk0nP-lU,11765
|
|
56
|
+
ultracart/model/auto_order_consolidate.py,sha256=fJiH7uKwK3gwP2mhVTmt7MtZokQem_CpkmuzF8ya82M,11505
|
|
56
57
|
ultracart/model/auto_order_item.py,sha256=Z7Ih0hBmH-KgBckW8465WBOjO10mXGb0cbV4EXFj_-U,23392
|
|
57
58
|
ultracart/model/auto_order_item_future_schedule.py,sha256=cTIdLcoPGu7HQUi5zpuVOoH4dfNcv0q0HZEj5YajxyI,12406
|
|
58
59
|
ultracart/model/auto_order_item_option.py,sha256=flZvz7ZbfSz24gdw0w8YaaDlukBmaXfMRb1q9DApoTc,11750
|
|
@@ -201,9 +202,11 @@ ultracart/model/conversation_pbx_agent_response.py,sha256=ExYxi_fMSjPzyaBA1U9OOD
|
|
|
201
202
|
ultracart/model/conversation_pbx_agents_response.py,sha256=DsJzAkoq_3y8maXw3rlGTfshJnZK9gG0sdVO5WnFjTQ,12885
|
|
202
203
|
ultracart/model/conversation_pbx_audio.py,sha256=_ab09XhTiyNOYTzV2ah-hS0-_Oj1gFi40J6fASRuWpQ,14035
|
|
203
204
|
ultracart/model/conversation_pbx_audio_response.py,sha256=D0fZUpw22P5QXSvfEp756d67ArwTSsNiBJzye9_pH3E,12871
|
|
205
|
+
ultracart/model/conversation_pbx_audio_upload_url.py,sha256=h3KlzvgL2QkDEdx6-55qB2xI4wHehOM5Dv4tKhkbh_g,11604
|
|
206
|
+
ultracart/model/conversation_pbx_audio_upload_url_response.py,sha256=gXXooQs_zWA_qwMEJoFywCcZedNzFXbNyKkfhaeukF0,13103
|
|
204
207
|
ultracart/model/conversation_pbx_audios_response.py,sha256=llnOyuMCddIzgEzHTVHSKHeA7aha8ns6w2NDViqR8cY,12885
|
|
205
208
|
ultracart/model/conversation_pbx_customer_snapshot_request.py,sha256=NX_L4Dnn2vkE0LJWKuHU_s_opzpzxVvoZIyuULwH7bo,13442
|
|
206
|
-
ultracart/model/conversation_pbx_customer_snapshot_response.py,sha256=
|
|
209
|
+
ultracart/model/conversation_pbx_customer_snapshot_response.py,sha256=altaQBJHMquhMUViFRjvXY8c8BmPLs6KHRCzW_Ek0tg,13448
|
|
207
210
|
ultracart/model/conversation_pbx_menu.py,sha256=E8--K06lUL63sO8fnFbotg-iLkVLPCjmGC0Cg_oRzK8,15036
|
|
208
211
|
ultracart/model/conversation_pbx_menu_mapping.py,sha256=to3XSfdCd9_I7K7mkwkPvbTiZc-CfP0ArfzZYHmODBE,12114
|
|
209
212
|
ultracart/model/conversation_pbx_menu_response.py,sha256=NknPaIxn5Xtbit9zmMoB5ri2TfUCdDiLqKi-4j3dYjI,12856
|
|
@@ -872,9 +875,9 @@ ultracart/model/workflow_tasks_response.py,sha256=KmHe72xKnZiS9CemBr5hluY5EsU9_x
|
|
|
872
875
|
ultracart/model/workflow_user.py,sha256=gkQIeMSIhawpz5wtpTJ8Lof_Td0IrwG0KZF6catE41k,11903
|
|
873
876
|
ultracart/model/workflow_user_response.py,sha256=TKfMu5vF1fXlV8mvxRFhvk6WNdGce2T8a4vFycQvuhQ,12785
|
|
874
877
|
ultracart/model/workflow_users_response.py,sha256=3Y7L1oHc2-HOvl1pDdcnl9xHKYLGblKpKdbkPBh2u68,13059
|
|
875
|
-
ultracart/models/__init__.py,sha256=
|
|
876
|
-
ultracart_rest_sdk-4.0.
|
|
877
|
-
ultracart_rest_sdk-4.0.
|
|
878
|
-
ultracart_rest_sdk-4.0.
|
|
879
|
-
ultracart_rest_sdk-4.0.
|
|
880
|
-
ultracart_rest_sdk-4.0.
|
|
878
|
+
ultracart/models/__init__.py,sha256=EGMhmgzL3NSxfIlfUzNhrcgkVH4YxSbYzfFYNH_iTio,65270
|
|
879
|
+
ultracart_rest_sdk-4.0.213.dist-info/LICENSE,sha256=4DukHX-rIHAHaf5BGLq1DYAMt0-ZA1OgXS9f_xwig2M,11558
|
|
880
|
+
ultracart_rest_sdk-4.0.213.dist-info/METADATA,sha256=myyh1ceYBGDs5M0NAFxQgMylQGYRdjTbDZTFNIG7k2E,403
|
|
881
|
+
ultracart_rest_sdk-4.0.213.dist-info/WHEEL,sha256=OqRkF0eY5GHssMorFjlbTIq072vpHpF60fIQA6lS9xA,92
|
|
882
|
+
ultracart_rest_sdk-4.0.213.dist-info/top_level.txt,sha256=90IoRqV6KX58jTyx9MwEBqh4j38_10hWrrvqsmXWZYo,10
|
|
883
|
+
ultracart_rest_sdk-4.0.213.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|