ultracart-rest-sdk 4.1.39__py3-none-any.whl → 4.1.41__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.
@@ -0,0 +1,302 @@
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 ConversationPbxPhoneNumberPurchaseRequest(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
+ ('action',): {
60
+ 'TIME_BASED': "time based",
61
+ 'MENU': "menu",
62
+ 'QUEUE': "queue",
63
+ 'VOICEMAIL': "voicemail",
64
+ 'AGENT': "agent",
65
+ },
66
+ }
67
+
68
+ validations = {
69
+ ('action',): {
70
+ 'max_length': 30,
71
+ },
72
+ ('action_target',): {
73
+ 'max_length': 50,
74
+ },
75
+ ('address_sid',): {
76
+ 'max_length': 50,
77
+ },
78
+ ('friendly_name',): {
79
+ 'max_length': 64,
80
+ },
81
+ ('phone_number',): {
82
+ 'max_length': 50,
83
+ },
84
+ }
85
+
86
+ @cached_property
87
+ def additional_properties_type():
88
+ """
89
+ This must be a method because a model may have properties that are
90
+ of type self, this must run after the class is loaded
91
+ """
92
+ return (bool, date, datetime, dict, float, int, list, str, none_type,) # noqa: E501
93
+
94
+ _nullable = False
95
+
96
+ @cached_property
97
+ def openapi_types():
98
+ """
99
+ This must be a method because a model may have properties that are
100
+ of type self, this must run after the class is loaded
101
+
102
+ Returns
103
+ openapi_types (dict): The key is attribute name
104
+ and the value is attribute type.
105
+ """
106
+ return {
107
+ 'action': (str,), # noqa: E501
108
+ 'action_target': (str,), # noqa: E501
109
+ 'address_sid': (str,), # noqa: E501
110
+ 'friendly_name': (str,), # noqa: E501
111
+ 'phone_number': (str,), # noqa: E501
112
+ }
113
+
114
+ @cached_property
115
+ def discriminator():
116
+ return None
117
+
118
+
119
+ attribute_map = {
120
+ 'action': 'action', # noqa: E501
121
+ 'action_target': 'action_target', # noqa: E501
122
+ 'address_sid': 'address_sid', # noqa: E501
123
+ 'friendly_name': 'friendly_name', # noqa: E501
124
+ 'phone_number': 'phone_number', # noqa: E501
125
+ }
126
+
127
+ read_only_vars = {
128
+ }
129
+
130
+ _composed_schemas = {}
131
+
132
+ @classmethod
133
+ @convert_js_args_to_python_args
134
+ def _from_openapi_data(cls, *args, **kwargs): # noqa: E501
135
+ """ConversationPbxPhoneNumberPurchaseRequest - a model defined in OpenAPI
136
+
137
+ Keyword Args:
138
+ _check_type (bool): if True, values for parameters in openapi_types
139
+ will be type checked and a TypeError will be
140
+ raised if the wrong type is input.
141
+ Defaults to True
142
+ _path_to_item (tuple/list): This is a list of keys or values to
143
+ drill down to the model in received_data
144
+ when deserializing a response
145
+ _spec_property_naming (bool): True if the variable names in the input data
146
+ are serialized names, as specified in the OpenAPI document.
147
+ False if the variable names in the input data
148
+ are pythonic names, e.g. snake case (default)
149
+ _configuration (Configuration): the instance to use when
150
+ deserializing a file_type parameter.
151
+ If passed, type conversion is attempted
152
+ If omitted no type conversion is done.
153
+ _visited_composed_classes (tuple): This stores a tuple of
154
+ classes that we have traveled through so that
155
+ if we see that class again we will not use its
156
+ discriminator again.
157
+ When traveling through a discriminator, the
158
+ composed schema that is
159
+ is traveled through is added to this set.
160
+ For example if Animal has a discriminator
161
+ petType and we pass in "Dog", and the class Dog
162
+ allOf includes Animal, we move through Animal
163
+ once using the discriminator, and pick Dog.
164
+ Then in Dog, we will make an instance of the
165
+ Animal class but this time we won't travel
166
+ through its discriminator because we passed in
167
+ _visited_composed_classes = (Animal,)
168
+ action (str): Initial action for incoming calls. [optional] # noqa: E501
169
+ action_target (str): Initial action target UUID. [optional] # noqa: E501
170
+ address_sid (str): Address SID if required for regulatory compliance. [optional] # noqa: E501
171
+ friendly_name (str): Friendly name for the phone number. [optional] # noqa: E501
172
+ phone_number (str): Phone number to purchase in E.164 format (from search results). [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
+ """ConversationPbxPhoneNumberPurchaseRequest - 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
+ action (str): Initial action for incoming calls. [optional] # noqa: E501
259
+ action_target (str): Initial action target UUID. [optional] # noqa: E501
260
+ address_sid (str): Address SID if required for regulatory compliance. [optional] # noqa: E501
261
+ friendly_name (str): Friendly name for the phone number. [optional] # noqa: E501
262
+ phone_number (str): Phone number to purchase in E.164 format (from search results). [optional] # noqa: E501
263
+ """
264
+
265
+ _check_type = kwargs.pop('_check_type', True)
266
+ _spec_property_naming = kwargs.pop('_spec_property_naming', False)
267
+ _path_to_item = kwargs.pop('_path_to_item', ())
268
+ _configuration = kwargs.pop('_configuration', None)
269
+ _visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
270
+
271
+ if args:
272
+ for arg in args:
273
+ if isinstance(arg, dict):
274
+ kwargs.update(arg)
275
+ else:
276
+ raise ApiTypeError(
277
+ "Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
278
+ args,
279
+ self.__class__.__name__,
280
+ ),
281
+ path_to_item=_path_to_item,
282
+ valid_classes=(self.__class__,),
283
+ )
284
+
285
+ self._data_store = {}
286
+ self._check_type = _check_type
287
+ self._spec_property_naming = _spec_property_naming
288
+ self._path_to_item = _path_to_item
289
+ self._configuration = _configuration
290
+ self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
291
+
292
+ for var_name, var_value in kwargs.items():
293
+ if var_name not in self.attribute_map and \
294
+ self._configuration is not None and \
295
+ self._configuration.discard_unknown_keys and \
296
+ self.additional_properties_type is None:
297
+ # discard variable.
298
+ continue
299
+ setattr(self, var_name, var_value)
300
+ if var_name in self.read_only_vars:
301
+ raise ApiAttributeError(f"`{var_name}` is a read-only attribute. Use `from_openapi_data` to instantiate "
302
+ f"class with read only attributes.")
@@ -189,6 +189,9 @@ from ultracart.model.conversation_messages_response import ConversationMessagesR
189
189
  from ultracart.model.conversation_multimedia_upload_url import ConversationMultimediaUploadUrl
190
190
  from ultracart.model.conversation_multimedia_upload_url_response import ConversationMultimediaUploadUrlResponse
191
191
  from ultracart.model.conversation_participant import ConversationParticipant
192
+ from ultracart.model.conversation_pbx_address import ConversationPbxAddress
193
+ from ultracart.model.conversation_pbx_address_response import ConversationPbxAddressResponse
194
+ from ultracart.model.conversation_pbx_addresses_response import ConversationPbxAddressesResponse
192
195
  from ultracart.model.conversation_pbx_agent import ConversationPbxAgent
193
196
  from ultracart.model.conversation_pbx_agent_response import ConversationPbxAgentResponse
194
197
  from ultracart.model.conversation_pbx_agents_response import ConversationPbxAgentsResponse
@@ -198,6 +201,8 @@ from ultracart.model.conversation_pbx_audio_upload_url import ConversationPbxAud
198
201
  from ultracart.model.conversation_pbx_audio_upload_url_response import ConversationPbxAudioUploadUrlResponse
199
202
  from ultracart.model.conversation_pbx_audio_usage_response import ConversationPbxAudioUsageResponse
200
203
  from ultracart.model.conversation_pbx_audios_response import ConversationPbxAudiosResponse
204
+ from ultracart.model.conversation_pbx_available_phone_number import ConversationPbxAvailablePhoneNumber
205
+ from ultracart.model.conversation_pbx_available_phone_numbers_response import ConversationPbxAvailablePhoneNumbersResponse
201
206
  from ultracart.model.conversation_pbx_customer_snapshot_request import ConversationPbxCustomerSnapshotRequest
202
207
  from ultracart.model.conversation_pbx_customer_snapshot_response import ConversationPbxCustomerSnapshotResponse
203
208
  from ultracart.model.conversation_pbx_menu import ConversationPbxMenu
@@ -205,6 +210,7 @@ from ultracart.model.conversation_pbx_menu_mapping import ConversationPbxMenuMap
205
210
  from ultracart.model.conversation_pbx_menu_response import ConversationPbxMenuResponse
206
211
  from ultracart.model.conversation_pbx_menus_response import ConversationPbxMenusResponse
207
212
  from ultracart.model.conversation_pbx_phone_number import ConversationPbxPhoneNumber
213
+ from ultracart.model.conversation_pbx_phone_number_purchase_request import ConversationPbxPhoneNumberPurchaseRequest
208
214
  from ultracart.model.conversation_pbx_phone_number_response import ConversationPbxPhoneNumberResponse
209
215
  from ultracart.model.conversation_pbx_phone_numbers_response import ConversationPbxPhoneNumbersResponse
210
216
  from ultracart.model.conversation_pbx_queue import ConversationPbxQueue
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ultracart-rest-sdk
3
- Version: 4.1.39
3
+ Version: 4.1.41
4
4
  Summary: UltraCart Rest API V2
5
5
  Home-page: UNKNOWN
6
6
  Author: UltraCart Support
@@ -1,6 +1,6 @@
1
- ultracart/__init__.py,sha256=odZXYjLbWu15oQBeMeJYh91DlleuTgN20y8XQKcOf9I,698
2
- ultracart/api_client.py,sha256=Djk1kdVhKzFitgMl7SqV41ivtu_xgaSyXB7IKmryOpA,39071
3
- ultracart/configuration.py,sha256=hHilP-uCNXgVl5YCzq1b4sErgoahRpxljXI-s19MpJQ,17841
1
+ ultracart/__init__.py,sha256=SWz6PiJs8-bfD7hhb3NYFZiP6Kinm-2TLZR6iRPb3vI,698
2
+ ultracart/api_client.py,sha256=6fQ5nICLxiYkSlLl-ItnR9soa-EaY9Zl8MNFTRNfCeo,39071
3
+ ultracart/configuration.py,sha256=wzuqzvtMJHhumAUQzt9yJkjAezCBzeCOUkfgO7lcDAY,17841
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
@@ -9,7 +9,7 @@ ultracart/api/affiliate_api.py,sha256=Rq7y9AAmN2gOT57qTulnMkr-W4SBboMrzKyM2SXT6R
9
9
  ultracart/api/auto_order_api.py,sha256=Fxh8jqvSKGeVDod9pWGV9z6mgzP1cVS2hvqQA1bLNnI,72000
10
10
  ultracart/api/channel_partner_api.py,sha256=EbAPFtaF8E38jrD7JgDaD-rGU3DM86O3lBPhDuq_fw4,89568
11
11
  ultracart/api/checkout_api.py,sha256=KLZAsTMiY55AHDhubbNZYipBPGwihQbEsLDjIDzkLkQ,105889
12
- ultracart/api/conversation_api.py,sha256=QWHHXnuC-ycE9zZ82TzGM_AiLAP1VPWadqi1q-2wAMs,524871
12
+ ultracart/api/conversation_api.py,sha256=Db2UEjeFxaAQ6AN-PsICFwdf6bJpNEHh-Aeo6t8VTrA,574749
13
13
  ultracart/api/coupon_api.py,sha256=voBpCzDhuBog_0WKSj9J-2zKSI8LyJINjUneeLAwlHg,109039
14
14
  ultracart/api/customer_api.py,sha256=vOM1GTsUFMfEwp9pYF2H_efZbZgMk-L1hlq4qA0CqZ8,153900
15
15
  ultracart/api/datawarehouse_api.py,sha256=QkXb1rXOjjsmVcpP5epPnmmxo-w2GRA1Z0xrnfGtftE,162366
@@ -157,7 +157,7 @@ ultracart/model/city_state_zip.py,sha256=goGnlh4nzcsV1p8iNeFm4y6LP2TrtHIVjBPrHCD
157
157
  ultracart/model/conversation.py,sha256=RXA0sxxk_lMdX98mSbU0xXYzRkZjRI_XRtHBaOoLP14,17919
158
158
  ultracart/model/conversation_agent_auth.py,sha256=J-rWsga02x5zuPOG_gDNxG31HRVULBAXjn_T_dZn8mU,15291
159
159
  ultracart/model/conversation_agent_auth_response.py,sha256=boVaC_JNOUGPlmxX2E-QdQWFLAJMS8GC4OWMRYaCjNM,12906
160
- ultracart/model/conversation_agent_profile.py,sha256=8zExHH_IzkGUc5vRhx2rPac6jPiquwIjJyhDs26MWOk,17254
160
+ ultracart/model/conversation_agent_profile.py,sha256=V1VYtDzKxVuulgOyeLM8bZAc2rB609GfEltJdZ0sInU,18209
161
161
  ultracart/model/conversation_agent_profile_response.py,sha256=vlWWfOZOgHoUuA74xY23jQ9bk4yBZkBbhFWAKiv1mq0,12951
162
162
  ultracart/model/conversation_agent_profiles_response.py,sha256=xLkOQiO2jaByY0mAG9ctZQLVu641ZE57f-COKLnc4Zc,12965
163
163
  ultracart/model/conversation_autocomplete_request.py,sha256=OjTA7kT3wMyv8E63wwoxai_E5baFIWerzWOl-xn2RB8,11625
@@ -207,6 +207,9 @@ ultracart/model/conversation_messages_response.py,sha256=wKaD-ZyZz4PGDSRUw-cDmZ3
207
207
  ultracart/model/conversation_multimedia_upload_url.py,sha256=b83yz8vwDJCcmrlnzKrMmoIzWV85YXc9JvigpxpRchc,11610
208
208
  ultracart/model/conversation_multimedia_upload_url_response.py,sha256=I9GW0IiHrN8XbkV9-m9RvJI9QE39EHmGoXxei_LQ-DY,13127
209
209
  ultracart/model/conversation_participant.py,sha256=AL9wPJxm2TozPN31HbUisIv6AhvTL6DqPuG5VIqY7_4,14482
210
+ ultracart/model/conversation_pbx_address.py,sha256=uNc0AqB1pq05L6UGotAmPJkuUhH20QzY6l8U18othVc,15102
211
+ ultracart/model/conversation_pbx_address_response.py,sha256=bRPz3PD7drTc5NcigJsE27NZ3iYe7Yy5w4NiVY7ssrY,12901
212
+ ultracart/model/conversation_pbx_addresses_response.py,sha256=s32DRvLOnNu_Nkmqs_YAHHnzJyyzfCrV0QqxNJFk4ug,11742
210
213
  ultracart/model/conversation_pbx_agent.py,sha256=zRsqJ9Xiaqw0yyN5KrHLi8n7uocYsWNE2OuQ18bMO00,17249
211
214
  ultracart/model/conversation_pbx_agent_response.py,sha256=ExYxi_fMSjPzyaBA1U9OODt0Ktn8DSMHlRFiq8vfQ04,12871
212
215
  ultracart/model/conversation_pbx_agents_response.py,sha256=DsJzAkoq_3y8maXw3rlGTfshJnZK9gG0sdVO5WnFjTQ,12885
@@ -216,13 +219,16 @@ ultracart/model/conversation_pbx_audio_upload_url.py,sha256=h3KlzvgL2QkDEdx6-55q
216
219
  ultracart/model/conversation_pbx_audio_upload_url_response.py,sha256=gXXooQs_zWA_qwMEJoFywCcZedNzFXbNyKkfhaeukF0,13103
217
220
  ultracart/model/conversation_pbx_audio_usage_response.py,sha256=tNc1ZTFkkUKvRiIc6ZMZMqdcGVTWlzuqV8YuFfhteQc,13792
218
221
  ultracart/model/conversation_pbx_audios_response.py,sha256=llnOyuMCddIzgEzHTVHSKHeA7aha8ns6w2NDViqR8cY,12885
222
+ ultracart/model/conversation_pbx_available_phone_number.py,sha256=CjiPxfHI1009HSDc968mtmWTCSa0gKeiaxoo3jBgxY4,13976
223
+ ultracart/model/conversation_pbx_available_phone_numbers_response.py,sha256=O9BC6M9WeYvxn8UlSmrplZozi7zp9hUr9p6MtKmPtTs,13122
219
224
  ultracart/model/conversation_pbx_customer_snapshot_request.py,sha256=NX_L4Dnn2vkE0LJWKuHU_s_opzpzxVvoZIyuULwH7bo,13442
220
225
  ultracart/model/conversation_pbx_customer_snapshot_response.py,sha256=altaQBJHMquhMUViFRjvXY8c8BmPLs6KHRCzW_Ek0tg,13448
221
226
  ultracart/model/conversation_pbx_menu.py,sha256=Rc8FHYvtAppQYGBCNOdfVz5S4ouV4SVU6pQXxhPHHrg,15421
222
227
  ultracart/model/conversation_pbx_menu_mapping.py,sha256=-00uET0jZHl1gFjTfWCwGTVDiOM23Snx5zxJQOGvq7M,12619
223
228
  ultracart/model/conversation_pbx_menu_response.py,sha256=NknPaIxn5Xtbit9zmMoB5ri2TfUCdDiLqKi-4j3dYjI,12856
224
229
  ultracart/model/conversation_pbx_menus_response.py,sha256=b7aNcBBXfAlXGxlX0LXcHqZRMSTFattGtNxJqZ6Ciz4,12870
225
- ultracart/model/conversation_pbx_phone_number.py,sha256=3sOTjxCcQ-HhihvWw07LnvWVS3fUcLMoczhtZnGbXMc,13326
230
+ ultracart/model/conversation_pbx_phone_number.py,sha256=ApvrFznTPJZhHlpwFBDlLhXypTEJK0Scw_QWLUSv4H8,13789
231
+ ultracart/model/conversation_pbx_phone_number_purchase_request.py,sha256=nw2gAGvlZ7RDRskGdJU8w391UHUnNE1CCrVG5NfnqgI,13332
226
232
  ultracart/model/conversation_pbx_phone_number_response.py,sha256=FjbU6Rqy6J3eT3Jkhm32Wt47V0DxgR9-TPL4vq7k-hs,12967
227
233
  ultracart/model/conversation_pbx_phone_numbers_response.py,sha256=rYihQnA17xnRi69J5HL8A8WPPhpEsis9cPvWmXRbJVQ,12981
228
234
  ultracart/model/conversation_pbx_queue.py,sha256=ldTyjekKV9yG43FygWYdaJBpDnG3e7QUVsZLvkGUZ-g,20164
@@ -933,9 +939,9 @@ ultracart/model/workflow_tasks_response.py,sha256=KmHe72xKnZiS9CemBr5hluY5EsU9_x
933
939
  ultracart/model/workflow_user.py,sha256=gkQIeMSIhawpz5wtpTJ8Lof_Td0IrwG0KZF6catE41k,11903
934
940
  ultracart/model/workflow_user_response.py,sha256=TKfMu5vF1fXlV8mvxRFhvk6WNdGce2T8a4vFycQvuhQ,12785
935
941
  ultracart/model/workflow_users_response.py,sha256=3Y7L1oHc2-HOvl1pDdcnl9xHKYLGblKpKdbkPBh2u68,13059
936
- ultracart/models/__init__.py,sha256=SZqn9U_infgI4EagBWf8gWyVn6pEfWK3c9_E7MmCJMw,70722
937
- ultracart_rest_sdk-4.1.39.dist-info/LICENSE,sha256=4DukHX-rIHAHaf5BGLq1DYAMt0-ZA1OgXS9f_xwig2M,11558
938
- ultracart_rest_sdk-4.1.39.dist-info/METADATA,sha256=miwLNPhdRky1cHkDhAQP9FhrWQDz7E6BXoO0hBEtmZ8,402
939
- ultracart_rest_sdk-4.1.39.dist-info/WHEEL,sha256=OqRkF0eY5GHssMorFjlbTIq072vpHpF60fIQA6lS9xA,92
940
- ultracart_rest_sdk-4.1.39.dist-info/top_level.txt,sha256=90IoRqV6KX58jTyx9MwEBqh4j38_10hWrrvqsmXWZYo,10
941
- ultracart_rest_sdk-4.1.39.dist-info/RECORD,,
942
+ ultracart/models/__init__.py,sha256=xGo2VdXmyUoLgnmuuaDaOoA0VMgWJ2dtPDq4rA3GFO0,71332
943
+ ultracart_rest_sdk-4.1.41.dist-info/LICENSE,sha256=4DukHX-rIHAHaf5BGLq1DYAMt0-ZA1OgXS9f_xwig2M,11558
944
+ ultracart_rest_sdk-4.1.41.dist-info/METADATA,sha256=Jrpmx7FUBfjEMoyfmoFpVj5BHXYqLKotkOVSqQ4C_tM,402
945
+ ultracart_rest_sdk-4.1.41.dist-info/WHEEL,sha256=OqRkF0eY5GHssMorFjlbTIq072vpHpF60fIQA6lS9xA,92
946
+ ultracart_rest_sdk-4.1.41.dist-info/top_level.txt,sha256=90IoRqV6KX58jTyx9MwEBqh4j38_10hWrrvqsmXWZYo,10
947
+ ultracart_rest_sdk-4.1.41.dist-info/RECORD,,