ultracart-rest-sdk 3.11.48__py3-none-any.whl → 3.11.50__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/api_client.py +1 -1
- ultracart/configuration.py +1 -1
- ultracart/models/conversation_pbx_agent.py +91 -29
- ultracart/models/conversation_pbx_hardware_phone.py +117 -3
- {ultracart_rest_sdk-3.11.48.dist-info → ultracart_rest_sdk-3.11.50.dist-info}/METADATA +1 -1
- {ultracart_rest_sdk-3.11.48.dist-info → ultracart_rest_sdk-3.11.50.dist-info}/RECORD +9 -9
- {ultracart_rest_sdk-3.11.48.dist-info → ultracart_rest_sdk-3.11.50.dist-info}/LICENSE +0 -0
- {ultracart_rest_sdk-3.11.48.dist-info → ultracart_rest_sdk-3.11.50.dist-info}/WHEEL +0 -0
- {ultracart_rest_sdk-3.11.48.dist-info → ultracart_rest_sdk-3.11.50.dist-info}/top_level.txt +0 -0
ultracart/api_client.py
CHANGED
|
@@ -74,7 +74,7 @@ class ApiClient(object):
|
|
|
74
74
|
self.default_headers[header_name] = header_value
|
|
75
75
|
self.cookie = cookie
|
|
76
76
|
# Set default User-Agent.
|
|
77
|
-
self.user_agent = 'Swagger-Codegen/3.11.
|
|
77
|
+
self.user_agent = 'Swagger-Codegen/3.11.50/python'
|
|
78
78
|
|
|
79
79
|
def __del__(self):
|
|
80
80
|
if self._pool is not None:
|
ultracart/configuration.py
CHANGED
|
@@ -32,14 +32,16 @@ class ConversationPbxAgent(object):
|
|
|
32
32
|
"""
|
|
33
33
|
swagger_types = {
|
|
34
34
|
'ai': 'bool',
|
|
35
|
+
'call_routing_preference': 'str',
|
|
35
36
|
'cellphone': 'str',
|
|
36
37
|
'conversation_pbx_agent_uuid': 'str',
|
|
37
38
|
'extension': 'int',
|
|
38
|
-
'forward_calls_to_cellphone': 'bool',
|
|
39
39
|
'full_name': 'str',
|
|
40
|
+
'hardware_phone_uuids': 'list[str]',
|
|
40
41
|
'login': 'str',
|
|
41
42
|
'merchant_id': 'str',
|
|
42
43
|
'personal_conversation_pbx_voicemail_mailbox_uuid': 'str',
|
|
44
|
+
'preferred_hardware_phone_uuid': 'str',
|
|
43
45
|
'record_outgoing_automatically': 'bool',
|
|
44
46
|
'shared_conversation_pbx_voicemail_mailbox_uuid': 'str',
|
|
45
47
|
'twilio_taskrouter_worker_id': 'str',
|
|
@@ -52,14 +54,16 @@ class ConversationPbxAgent(object):
|
|
|
52
54
|
|
|
53
55
|
attribute_map = {
|
|
54
56
|
'ai': 'ai',
|
|
57
|
+
'call_routing_preference': 'call_routing_preference',
|
|
55
58
|
'cellphone': 'cellphone',
|
|
56
59
|
'conversation_pbx_agent_uuid': 'conversation_pbx_agent_uuid',
|
|
57
60
|
'extension': 'extension',
|
|
58
|
-
'forward_calls_to_cellphone': 'forward_calls_to_cellphone',
|
|
59
61
|
'full_name': 'full_name',
|
|
62
|
+
'hardware_phone_uuids': 'hardware_phone_uuids',
|
|
60
63
|
'login': 'login',
|
|
61
64
|
'merchant_id': 'merchant_id',
|
|
62
65
|
'personal_conversation_pbx_voicemail_mailbox_uuid': 'personal_conversation_pbx_voicemail_mailbox_uuid',
|
|
66
|
+
'preferred_hardware_phone_uuid': 'preferred_hardware_phone_uuid',
|
|
63
67
|
'record_outgoing_automatically': 'record_outgoing_automatically',
|
|
64
68
|
'shared_conversation_pbx_voicemail_mailbox_uuid': 'shared_conversation_pbx_voicemail_mailbox_uuid',
|
|
65
69
|
'twilio_taskrouter_worker_id': 'twilio_taskrouter_worker_id',
|
|
@@ -70,18 +74,20 @@ class ConversationPbxAgent(object):
|
|
|
70
74
|
'voicemail': 'voicemail'
|
|
71
75
|
}
|
|
72
76
|
|
|
73
|
-
def __init__(self, ai=None, cellphone=None, conversation_pbx_agent_uuid=None, extension=None,
|
|
77
|
+
def __init__(self, ai=None, call_routing_preference=None, cellphone=None, conversation_pbx_agent_uuid=None, extension=None, full_name=None, hardware_phone_uuids=None, login=None, merchant_id=None, personal_conversation_pbx_voicemail_mailbox_uuid=None, preferred_hardware_phone_uuid=None, record_outgoing_automatically=None, shared_conversation_pbx_voicemail_mailbox_uuid=None, twilio_taskrouter_worker_id=None, unavailable_play_audio_uuid=None, unavailable_say=None, unavailable_say_voice=None, user_id=None, voicemail=None): # noqa: E501
|
|
74
78
|
"""ConversationPbxAgent - a model defined in Swagger""" # noqa: E501
|
|
75
79
|
|
|
76
80
|
self._ai = None
|
|
81
|
+
self._call_routing_preference = None
|
|
77
82
|
self._cellphone = None
|
|
78
83
|
self._conversation_pbx_agent_uuid = None
|
|
79
84
|
self._extension = None
|
|
80
|
-
self._forward_calls_to_cellphone = None
|
|
81
85
|
self._full_name = None
|
|
86
|
+
self._hardware_phone_uuids = None
|
|
82
87
|
self._login = None
|
|
83
88
|
self._merchant_id = None
|
|
84
89
|
self._personal_conversation_pbx_voicemail_mailbox_uuid = None
|
|
90
|
+
self._preferred_hardware_phone_uuid = None
|
|
85
91
|
self._record_outgoing_automatically = None
|
|
86
92
|
self._shared_conversation_pbx_voicemail_mailbox_uuid = None
|
|
87
93
|
self._twilio_taskrouter_worker_id = None
|
|
@@ -94,22 +100,26 @@ class ConversationPbxAgent(object):
|
|
|
94
100
|
|
|
95
101
|
if ai is not None:
|
|
96
102
|
self.ai = ai
|
|
103
|
+
if call_routing_preference is not None:
|
|
104
|
+
self.call_routing_preference = call_routing_preference
|
|
97
105
|
if cellphone is not None:
|
|
98
106
|
self.cellphone = cellphone
|
|
99
107
|
if conversation_pbx_agent_uuid is not None:
|
|
100
108
|
self.conversation_pbx_agent_uuid = conversation_pbx_agent_uuid
|
|
101
109
|
if extension is not None:
|
|
102
110
|
self.extension = extension
|
|
103
|
-
if forward_calls_to_cellphone is not None:
|
|
104
|
-
self.forward_calls_to_cellphone = forward_calls_to_cellphone
|
|
105
111
|
if full_name is not None:
|
|
106
112
|
self.full_name = full_name
|
|
113
|
+
if hardware_phone_uuids is not None:
|
|
114
|
+
self.hardware_phone_uuids = hardware_phone_uuids
|
|
107
115
|
if login is not None:
|
|
108
116
|
self.login = login
|
|
109
117
|
if merchant_id is not None:
|
|
110
118
|
self.merchant_id = merchant_id
|
|
111
119
|
if personal_conversation_pbx_voicemail_mailbox_uuid is not None:
|
|
112
120
|
self.personal_conversation_pbx_voicemail_mailbox_uuid = personal_conversation_pbx_voicemail_mailbox_uuid
|
|
121
|
+
if preferred_hardware_phone_uuid is not None:
|
|
122
|
+
self.preferred_hardware_phone_uuid = preferred_hardware_phone_uuid
|
|
113
123
|
if record_outgoing_automatically is not None:
|
|
114
124
|
self.record_outgoing_automatically = record_outgoing_automatically
|
|
115
125
|
if shared_conversation_pbx_voicemail_mailbox_uuid is not None:
|
|
@@ -150,6 +160,35 @@ class ConversationPbxAgent(object):
|
|
|
150
160
|
|
|
151
161
|
self._ai = ai
|
|
152
162
|
|
|
163
|
+
@property
|
|
164
|
+
def call_routing_preference(self):
|
|
165
|
+
"""Gets the call_routing_preference of this ConversationPbxAgent. # noqa: E501
|
|
166
|
+
|
|
167
|
+
The call routing preference # noqa: E501
|
|
168
|
+
|
|
169
|
+
:return: The call_routing_preference of this ConversationPbxAgent. # noqa: E501
|
|
170
|
+
:rtype: str
|
|
171
|
+
"""
|
|
172
|
+
return self._call_routing_preference
|
|
173
|
+
|
|
174
|
+
@call_routing_preference.setter
|
|
175
|
+
def call_routing_preference(self, call_routing_preference):
|
|
176
|
+
"""Sets the call_routing_preference of this ConversationPbxAgent.
|
|
177
|
+
|
|
178
|
+
The call routing preference # noqa: E501
|
|
179
|
+
|
|
180
|
+
:param call_routing_preference: The call_routing_preference of this ConversationPbxAgent. # noqa: E501
|
|
181
|
+
:type: str
|
|
182
|
+
"""
|
|
183
|
+
allowed_values = ["softphone", "hardware_phone", "cellphone"] # noqa: E501
|
|
184
|
+
if call_routing_preference not in allowed_values:
|
|
185
|
+
raise ValueError(
|
|
186
|
+
"Invalid value for `call_routing_preference` ({0}), must be one of {1}" # noqa: E501
|
|
187
|
+
.format(call_routing_preference, allowed_values)
|
|
188
|
+
)
|
|
189
|
+
|
|
190
|
+
self._call_routing_preference = call_routing_preference
|
|
191
|
+
|
|
153
192
|
@property
|
|
154
193
|
def cellphone(self):
|
|
155
194
|
"""Gets the cellphone of this ConversationPbxAgent. # noqa: E501
|
|
@@ -221,29 +260,6 @@ class ConversationPbxAgent(object):
|
|
|
221
260
|
|
|
222
261
|
self._extension = extension
|
|
223
262
|
|
|
224
|
-
@property
|
|
225
|
-
def forward_calls_to_cellphone(self):
|
|
226
|
-
"""Gets the forward_calls_to_cellphone of this ConversationPbxAgent. # noqa: E501
|
|
227
|
-
|
|
228
|
-
True if calls to this agent should be forwarded to their cellphone # noqa: E501
|
|
229
|
-
|
|
230
|
-
:return: The forward_calls_to_cellphone of this ConversationPbxAgent. # noqa: E501
|
|
231
|
-
:rtype: bool
|
|
232
|
-
"""
|
|
233
|
-
return self._forward_calls_to_cellphone
|
|
234
|
-
|
|
235
|
-
@forward_calls_to_cellphone.setter
|
|
236
|
-
def forward_calls_to_cellphone(self, forward_calls_to_cellphone):
|
|
237
|
-
"""Sets the forward_calls_to_cellphone of this ConversationPbxAgent.
|
|
238
|
-
|
|
239
|
-
True if calls to this agent should be forwarded to their cellphone # noqa: E501
|
|
240
|
-
|
|
241
|
-
:param forward_calls_to_cellphone: The forward_calls_to_cellphone of this ConversationPbxAgent. # noqa: E501
|
|
242
|
-
:type: bool
|
|
243
|
-
"""
|
|
244
|
-
|
|
245
|
-
self._forward_calls_to_cellphone = forward_calls_to_cellphone
|
|
246
|
-
|
|
247
263
|
@property
|
|
248
264
|
def full_name(self):
|
|
249
265
|
"""Gets the full_name of this ConversationPbxAgent. # noqa: E501
|
|
@@ -267,6 +283,29 @@ class ConversationPbxAgent(object):
|
|
|
267
283
|
|
|
268
284
|
self._full_name = full_name
|
|
269
285
|
|
|
286
|
+
@property
|
|
287
|
+
def hardware_phone_uuids(self):
|
|
288
|
+
"""Gets the hardware_phone_uuids of this ConversationPbxAgent. # noqa: E501
|
|
289
|
+
|
|
290
|
+
Array of hardware phones UUIDs associated with this agent # noqa: E501
|
|
291
|
+
|
|
292
|
+
:return: The hardware_phone_uuids of this ConversationPbxAgent. # noqa: E501
|
|
293
|
+
:rtype: list[str]
|
|
294
|
+
"""
|
|
295
|
+
return self._hardware_phone_uuids
|
|
296
|
+
|
|
297
|
+
@hardware_phone_uuids.setter
|
|
298
|
+
def hardware_phone_uuids(self, hardware_phone_uuids):
|
|
299
|
+
"""Sets the hardware_phone_uuids of this ConversationPbxAgent.
|
|
300
|
+
|
|
301
|
+
Array of hardware phones UUIDs associated with this agent # noqa: E501
|
|
302
|
+
|
|
303
|
+
:param hardware_phone_uuids: The hardware_phone_uuids of this ConversationPbxAgent. # noqa: E501
|
|
304
|
+
:type: list[str]
|
|
305
|
+
"""
|
|
306
|
+
|
|
307
|
+
self._hardware_phone_uuids = hardware_phone_uuids
|
|
308
|
+
|
|
270
309
|
@property
|
|
271
310
|
def login(self):
|
|
272
311
|
"""Gets the login of this ConversationPbxAgent. # noqa: E501
|
|
@@ -340,6 +379,29 @@ class ConversationPbxAgent(object):
|
|
|
340
379
|
|
|
341
380
|
self._personal_conversation_pbx_voicemail_mailbox_uuid = personal_conversation_pbx_voicemail_mailbox_uuid
|
|
342
381
|
|
|
382
|
+
@property
|
|
383
|
+
def preferred_hardware_phone_uuid(self):
|
|
384
|
+
"""Gets the preferred_hardware_phone_uuid of this ConversationPbxAgent. # noqa: E501
|
|
385
|
+
|
|
386
|
+
The hardware phone that will be dialed on an incoming call if routing preference is hardware_phone # noqa: E501
|
|
387
|
+
|
|
388
|
+
:return: The preferred_hardware_phone_uuid of this ConversationPbxAgent. # noqa: E501
|
|
389
|
+
:rtype: str
|
|
390
|
+
"""
|
|
391
|
+
return self._preferred_hardware_phone_uuid
|
|
392
|
+
|
|
393
|
+
@preferred_hardware_phone_uuid.setter
|
|
394
|
+
def preferred_hardware_phone_uuid(self, preferred_hardware_phone_uuid):
|
|
395
|
+
"""Sets the preferred_hardware_phone_uuid of this ConversationPbxAgent.
|
|
396
|
+
|
|
397
|
+
The hardware phone that will be dialed on an incoming call if routing preference is hardware_phone # noqa: E501
|
|
398
|
+
|
|
399
|
+
:param preferred_hardware_phone_uuid: The preferred_hardware_phone_uuid of this ConversationPbxAgent. # noqa: E501
|
|
400
|
+
:type: str
|
|
401
|
+
"""
|
|
402
|
+
|
|
403
|
+
self._preferred_hardware_phone_uuid = preferred_hardware_phone_uuid
|
|
404
|
+
|
|
343
405
|
@property
|
|
344
406
|
def record_outgoing_automatically(self):
|
|
345
407
|
"""Gets the record_outgoing_automatically of this ConversationPbxAgent. # noqa: E501
|
|
@@ -31,6 +31,8 @@ class ConversationPbxHardwarePhone(object):
|
|
|
31
31
|
and the value is json key in definition.
|
|
32
32
|
"""
|
|
33
33
|
swagger_types = {
|
|
34
|
+
'admin_username': 'str',
|
|
35
|
+
'conversation_pbx_agent_uuid': 'str',
|
|
34
36
|
'conversation_pbx_hardware_phone_uuid': 'str',
|
|
35
37
|
'created_at': 'object',
|
|
36
38
|
'description': 'str',
|
|
@@ -41,12 +43,16 @@ class ConversationPbxHardwarePhone(object):
|
|
|
41
43
|
'name': 'str',
|
|
42
44
|
'provisioning_url': 'str',
|
|
43
45
|
'sip_domain': 'str',
|
|
46
|
+
'sip_edge_location': 'str',
|
|
44
47
|
'sip_password': 'str',
|
|
45
48
|
'sip_username': 'str',
|
|
49
|
+
'twilio_credential_sid': 'str',
|
|
46
50
|
'updated_at': 'object'
|
|
47
51
|
}
|
|
48
52
|
|
|
49
53
|
attribute_map = {
|
|
54
|
+
'admin_username': 'admin_username',
|
|
55
|
+
'conversation_pbx_agent_uuid': 'conversation_pbx_agent_uuid',
|
|
50
56
|
'conversation_pbx_hardware_phone_uuid': 'conversation_pbx_hardware_phone_uuid',
|
|
51
57
|
'created_at': 'created_at',
|
|
52
58
|
'description': 'description',
|
|
@@ -57,14 +63,18 @@ class ConversationPbxHardwarePhone(object):
|
|
|
57
63
|
'name': 'name',
|
|
58
64
|
'provisioning_url': 'provisioning_url',
|
|
59
65
|
'sip_domain': 'sip_domain',
|
|
66
|
+
'sip_edge_location': 'sip_edge_location',
|
|
60
67
|
'sip_password': 'sip_password',
|
|
61
68
|
'sip_username': 'sip_username',
|
|
69
|
+
'twilio_credential_sid': 'twilio_credential_sid',
|
|
62
70
|
'updated_at': 'updated_at'
|
|
63
71
|
}
|
|
64
72
|
|
|
65
|
-
def __init__(self, conversation_pbx_hardware_phone_uuid=None, created_at=None, description=None, mac_address=None, manufacturer=None, merchant_id=None, model=None, name=None, provisioning_url=None, sip_domain=None, sip_password=None, sip_username=None, updated_at=None): # noqa: E501
|
|
73
|
+
def __init__(self, admin_username=None, conversation_pbx_agent_uuid=None, conversation_pbx_hardware_phone_uuid=None, created_at=None, description=None, mac_address=None, manufacturer=None, merchant_id=None, model=None, name=None, provisioning_url=None, sip_domain=None, sip_edge_location=None, sip_password=None, sip_username=None, twilio_credential_sid=None, updated_at=None): # noqa: E501
|
|
66
74
|
"""ConversationPbxHardwarePhone - a model defined in Swagger""" # noqa: E501
|
|
67
75
|
|
|
76
|
+
self._admin_username = None
|
|
77
|
+
self._conversation_pbx_agent_uuid = None
|
|
68
78
|
self._conversation_pbx_hardware_phone_uuid = None
|
|
69
79
|
self._created_at = None
|
|
70
80
|
self._description = None
|
|
@@ -75,11 +85,17 @@ class ConversationPbxHardwarePhone(object):
|
|
|
75
85
|
self._name = None
|
|
76
86
|
self._provisioning_url = None
|
|
77
87
|
self._sip_domain = None
|
|
88
|
+
self._sip_edge_location = None
|
|
78
89
|
self._sip_password = None
|
|
79
90
|
self._sip_username = None
|
|
91
|
+
self._twilio_credential_sid = None
|
|
80
92
|
self._updated_at = None
|
|
81
93
|
self.discriminator = None
|
|
82
94
|
|
|
95
|
+
if admin_username is not None:
|
|
96
|
+
self.admin_username = admin_username
|
|
97
|
+
if conversation_pbx_agent_uuid is not None:
|
|
98
|
+
self.conversation_pbx_agent_uuid = conversation_pbx_agent_uuid
|
|
83
99
|
if conversation_pbx_hardware_phone_uuid is not None:
|
|
84
100
|
self.conversation_pbx_hardware_phone_uuid = conversation_pbx_hardware_phone_uuid
|
|
85
101
|
if created_at is not None:
|
|
@@ -100,13 +116,63 @@ class ConversationPbxHardwarePhone(object):
|
|
|
100
116
|
self.provisioning_url = provisioning_url
|
|
101
117
|
if sip_domain is not None:
|
|
102
118
|
self.sip_domain = sip_domain
|
|
119
|
+
if sip_edge_location is not None:
|
|
120
|
+
self.sip_edge_location = sip_edge_location
|
|
103
121
|
if sip_password is not None:
|
|
104
122
|
self.sip_password = sip_password
|
|
105
123
|
if sip_username is not None:
|
|
106
124
|
self.sip_username = sip_username
|
|
125
|
+
if twilio_credential_sid is not None:
|
|
126
|
+
self.twilio_credential_sid = twilio_credential_sid
|
|
107
127
|
if updated_at is not None:
|
|
108
128
|
self.updated_at = updated_at
|
|
109
129
|
|
|
130
|
+
@property
|
|
131
|
+
def admin_username(self):
|
|
132
|
+
"""Gets the admin_username of this ConversationPbxHardwarePhone. # noqa: E501
|
|
133
|
+
|
|
134
|
+
Admin Username # noqa: E501
|
|
135
|
+
|
|
136
|
+
:return: The admin_username of this ConversationPbxHardwarePhone. # noqa: E501
|
|
137
|
+
:rtype: str
|
|
138
|
+
"""
|
|
139
|
+
return self._admin_username
|
|
140
|
+
|
|
141
|
+
@admin_username.setter
|
|
142
|
+
def admin_username(self, admin_username):
|
|
143
|
+
"""Sets the admin_username of this ConversationPbxHardwarePhone.
|
|
144
|
+
|
|
145
|
+
Admin Username # noqa: E501
|
|
146
|
+
|
|
147
|
+
:param admin_username: The admin_username of this ConversationPbxHardwarePhone. # noqa: E501
|
|
148
|
+
:type: str
|
|
149
|
+
"""
|
|
150
|
+
|
|
151
|
+
self._admin_username = admin_username
|
|
152
|
+
|
|
153
|
+
@property
|
|
154
|
+
def conversation_pbx_agent_uuid(self):
|
|
155
|
+
"""Gets the conversation_pbx_agent_uuid of this ConversationPbxHardwarePhone. # noqa: E501
|
|
156
|
+
|
|
157
|
+
Associated Agent UUID # noqa: E501
|
|
158
|
+
|
|
159
|
+
:return: The conversation_pbx_agent_uuid of this ConversationPbxHardwarePhone. # noqa: E501
|
|
160
|
+
:rtype: str
|
|
161
|
+
"""
|
|
162
|
+
return self._conversation_pbx_agent_uuid
|
|
163
|
+
|
|
164
|
+
@conversation_pbx_agent_uuid.setter
|
|
165
|
+
def conversation_pbx_agent_uuid(self, conversation_pbx_agent_uuid):
|
|
166
|
+
"""Sets the conversation_pbx_agent_uuid of this ConversationPbxHardwarePhone.
|
|
167
|
+
|
|
168
|
+
Associated Agent UUID # noqa: E501
|
|
169
|
+
|
|
170
|
+
:param conversation_pbx_agent_uuid: The conversation_pbx_agent_uuid of this ConversationPbxHardwarePhone. # noqa: E501
|
|
171
|
+
:type: str
|
|
172
|
+
"""
|
|
173
|
+
|
|
174
|
+
self._conversation_pbx_agent_uuid = conversation_pbx_agent_uuid
|
|
175
|
+
|
|
110
176
|
@property
|
|
111
177
|
def conversation_pbx_hardware_phone_uuid(self):
|
|
112
178
|
"""Gets the conversation_pbx_hardware_phone_uuid of this ConversationPbxHardwarePhone. # noqa: E501
|
|
@@ -353,11 +419,36 @@ class ConversationPbxHardwarePhone(object):
|
|
|
353
419
|
|
|
354
420
|
self._sip_domain = sip_domain
|
|
355
421
|
|
|
422
|
+
@property
|
|
423
|
+
def sip_edge_location(self):
|
|
424
|
+
"""Gets the sip_edge_location of this ConversationPbxHardwarePhone. # noqa: E501
|
|
425
|
+
|
|
426
|
+
SIP Edge Location # noqa: E501
|
|
427
|
+
|
|
428
|
+
:return: The sip_edge_location of this ConversationPbxHardwarePhone. # noqa: E501
|
|
429
|
+
:rtype: str
|
|
430
|
+
"""
|
|
431
|
+
return self._sip_edge_location
|
|
432
|
+
|
|
433
|
+
@sip_edge_location.setter
|
|
434
|
+
def sip_edge_location(self, sip_edge_location):
|
|
435
|
+
"""Sets the sip_edge_location of this ConversationPbxHardwarePhone.
|
|
436
|
+
|
|
437
|
+
SIP Edge Location # noqa: E501
|
|
438
|
+
|
|
439
|
+
:param sip_edge_location: The sip_edge_location of this ConversationPbxHardwarePhone. # noqa: E501
|
|
440
|
+
:type: str
|
|
441
|
+
"""
|
|
442
|
+
if sip_edge_location is not None and len(sip_edge_location) > 50:
|
|
443
|
+
raise ValueError("Invalid value for `sip_edge_location`, length must be less than or equal to `50`") # noqa: E501
|
|
444
|
+
|
|
445
|
+
self._sip_edge_location = sip_edge_location
|
|
446
|
+
|
|
356
447
|
@property
|
|
357
448
|
def sip_password(self):
|
|
358
449
|
"""Gets the sip_password of this ConversationPbxHardwarePhone. # noqa: E501
|
|
359
450
|
|
|
360
|
-
SIP Password # noqa: E501
|
|
451
|
+
SIP Password (only on create or regenerate password requests) # noqa: E501
|
|
361
452
|
|
|
362
453
|
:return: The sip_password of this ConversationPbxHardwarePhone. # noqa: E501
|
|
363
454
|
:rtype: str
|
|
@@ -368,7 +459,7 @@ class ConversationPbxHardwarePhone(object):
|
|
|
368
459
|
def sip_password(self, sip_password):
|
|
369
460
|
"""Sets the sip_password of this ConversationPbxHardwarePhone.
|
|
370
461
|
|
|
371
|
-
SIP Password # noqa: E501
|
|
462
|
+
SIP Password (only on create or regenerate password requests) # noqa: E501
|
|
372
463
|
|
|
373
464
|
:param sip_password: The sip_password of this ConversationPbxHardwarePhone. # noqa: E501
|
|
374
465
|
:type: str
|
|
@@ -403,6 +494,29 @@ class ConversationPbxHardwarePhone(object):
|
|
|
403
494
|
|
|
404
495
|
self._sip_username = sip_username
|
|
405
496
|
|
|
497
|
+
@property
|
|
498
|
+
def twilio_credential_sid(self):
|
|
499
|
+
"""Gets the twilio_credential_sid of this ConversationPbxHardwarePhone. # noqa: E501
|
|
500
|
+
|
|
501
|
+
Twilio Credential SID # noqa: E501
|
|
502
|
+
|
|
503
|
+
:return: The twilio_credential_sid of this ConversationPbxHardwarePhone. # noqa: E501
|
|
504
|
+
:rtype: str
|
|
505
|
+
"""
|
|
506
|
+
return self._twilio_credential_sid
|
|
507
|
+
|
|
508
|
+
@twilio_credential_sid.setter
|
|
509
|
+
def twilio_credential_sid(self, twilio_credential_sid):
|
|
510
|
+
"""Sets the twilio_credential_sid of this ConversationPbxHardwarePhone.
|
|
511
|
+
|
|
512
|
+
Twilio Credential SID # noqa: E501
|
|
513
|
+
|
|
514
|
+
:param twilio_credential_sid: The twilio_credential_sid of this ConversationPbxHardwarePhone. # noqa: E501
|
|
515
|
+
:type: str
|
|
516
|
+
"""
|
|
517
|
+
|
|
518
|
+
self._twilio_credential_sid = twilio_credential_sid
|
|
519
|
+
|
|
406
520
|
@property
|
|
407
521
|
def updated_at(self):
|
|
408
522
|
"""Gets the updated_at of this ConversationPbxHardwarePhone. # noqa: E501
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
ultracart/__init__.py,sha256=pbIsDVdinnrFHYzG5gvgRaQDKC_zsl11YGTiAN7lnUI,75091
|
|
2
|
-
ultracart/api_client.py,sha256=
|
|
3
|
-
ultracart/configuration.py,sha256=
|
|
2
|
+
ultracart/api_client.py,sha256=2w8ECo4wE5hJoNC64DzPg5iLkW5kDudYi7qZimBZEwo,25613
|
|
3
|
+
ultracart/configuration.py,sha256=9fR0DnE_bS0fVk22gUSnSEw07QUQGTjDiW6WxOyM8pc,8999
|
|
4
4
|
ultracart/rest.py,sha256=SykJPRivLOJgoq4Rnyp117sB8lU0tGvwd2Cai8fN3J8,13489
|
|
5
5
|
ultracart/api/__init__.py,sha256=gtOBD2-NGsYYDuerfiCfjqLJql44d50lAlaxpAqd7tI,1152
|
|
6
6
|
ultracart/api/affiliate_api.py,sha256=BfkCqA8ayOggBtV24g8yZyTxTNPiUJMYgqbBEbnWrJQ,12785
|
|
@@ -209,7 +209,7 @@ ultracart/models/conversation_participant.py,sha256=0vS_5-6K0BPN4hw47SYlAjU0hdFu
|
|
|
209
209
|
ultracart/models/conversation_pbx_address.py,sha256=BNv1Z_ISrEhJUS_sJ9tcvX2_TM-51Lx1QhOcgK8Sd8k,15780
|
|
210
210
|
ultracart/models/conversation_pbx_address_response.py,sha256=jSQaaQ0rGH9D28PSBDKbEpiqLeOslvGO5rzxHQTGPaQ,6464
|
|
211
211
|
ultracart/models/conversation_pbx_addresses_response.py,sha256=NRtxJz1wk90qbEsV2YWqWI_1BCA9R2YcpMqVeEhVZVI,3438
|
|
212
|
-
ultracart/models/conversation_pbx_agent.py,sha256=
|
|
212
|
+
ultracart/models/conversation_pbx_agent.py,sha256=sggftV8gu_IoVi99nEpeAUuUU-QWk4lM3IlJeMiyG-A,24720
|
|
213
213
|
ultracart/models/conversation_pbx_agent_response.py,sha256=lJLJxsvFbbg5lf77Z5DGCn10eFSCbQv0VYvoEY91T4A,6370
|
|
214
214
|
ultracart/models/conversation_pbx_agents_response.py,sha256=pwJbxPpx5N9DBk_gplrA0tDtdCpi0n2bI3QRPtyQ_QE,6432
|
|
215
215
|
ultracart/models/conversation_pbx_audio.py,sha256=dC7YKS0JVfvOpmRlbMoEhPJgxtE-QtRz7imiHozJHtI,12483
|
|
@@ -222,7 +222,7 @@ ultracart/models/conversation_pbx_available_phone_number.py,sha256=yvWHvUVeVhRRz
|
|
|
222
222
|
ultracart/models/conversation_pbx_available_phone_numbers_response.py,sha256=N2ZcUu7DI1z8qKY6FEPDAA66uan9D1U_-fbuJ8YQs7w,7177
|
|
223
223
|
ultracart/models/conversation_pbx_customer_snapshot_request.py,sha256=qyCjmYp_7ExeECiohskgjZ_gGrWd5Qq-KTZ3IsVnU-o,9460
|
|
224
224
|
ultracart/models/conversation_pbx_customer_snapshot_response.py,sha256=i0SayNu_b0wAttxhPTdU45g3TT6K74-RuUoc8k9WFpU,8358
|
|
225
|
-
ultracart/models/conversation_pbx_hardware_phone.py,sha256=
|
|
225
|
+
ultracart/models/conversation_pbx_hardware_phone.py,sha256=rPx2VUAx67hQVzUbdO2sPTHUBnPPQFWcnTolK2t9hZQ,20886
|
|
226
226
|
ultracart/models/conversation_pbx_hardware_phone_response.py,sha256=Y2yXHMa2u2_mfHgHfk7V627hXj-3YXe3CrqCSmvvkgk,6766
|
|
227
227
|
ultracart/models/conversation_pbx_hardware_phones_response.py,sha256=Yp4LXMPoorOvWPOJnGaYOCArbO9HTa_MW6r8zk-woXo,3616
|
|
228
228
|
ultracart/models/conversation_pbx_menu.py,sha256=sTSBnR1oc1ucEJwTao3XETIrHJgbqZ3bzIunrY5ft1M,14303
|
|
@@ -944,8 +944,8 @@ ultracart/models/workflow_tasks_response.py,sha256=2CELun_Yz00Ww8MLo3pqfx7oCJLMZ
|
|
|
944
944
|
ultracart/models/workflow_user.py,sha256=dS5Oj_e5KeruK8WnxZFrx4tL-86B-ImggasTQLm7q6s,4783
|
|
945
945
|
ultracart/models/workflow_user_response.py,sha256=tqt9Bo6KqrvkcW9weFeC6nu5wAqYQBx--Yi4RQzditI,6134
|
|
946
946
|
ultracart/models/workflow_users_response.py,sha256=t1UP-nG8gOoyFGcf5dTTqk6zFapBrJBH63ddrJgP-tM,7095
|
|
947
|
-
ultracart_rest_sdk-3.11.
|
|
948
|
-
ultracart_rest_sdk-3.11.
|
|
949
|
-
ultracart_rest_sdk-3.11.
|
|
950
|
-
ultracart_rest_sdk-3.11.
|
|
951
|
-
ultracart_rest_sdk-3.11.
|
|
947
|
+
ultracart_rest_sdk-3.11.50.dist-info/LICENSE,sha256=4DukHX-rIHAHaf5BGLq1DYAMt0-ZA1OgXS9f_xwig2M,11558
|
|
948
|
+
ultracart_rest_sdk-3.11.50.dist-info/METADATA,sha256=F4H0HzE-MvyF4VU9WbyQ1HK8HRgoZuYvpm0-Et2cfgk,423
|
|
949
|
+
ultracart_rest_sdk-3.11.50.dist-info/WHEEL,sha256=OqRkF0eY5GHssMorFjlbTIq072vpHpF60fIQA6lS9xA,92
|
|
950
|
+
ultracart_rest_sdk-3.11.50.dist-info/top_level.txt,sha256=90IoRqV6KX58jTyx9MwEBqh4j38_10hWrrvqsmXWZYo,10
|
|
951
|
+
ultracart_rest_sdk-3.11.50.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|