alibabacloud-cams20200606 4.0.0__py3-none-any.whl → 4.1.0__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.
- alibabacloud_cams20200606/__init__.py +1 -1
- alibabacloud_cams20200606/client.py +110 -0
- alibabacloud_cams20200606/models/__init__.py +33 -1
- alibabacloud_cams20200606/models/_chatapp_sync_phone_number_response_body.py +263 -1
- alibabacloud_cams20200606/models/_query_chatapp_phone_numbers_response_body.py +271 -1
- alibabacloud_cams20200606/models/_whatsapp_call_request.py +138 -0
- alibabacloud_cams20200606/models/_whatsapp_call_response.py +54 -0
- alibabacloud_cams20200606/models/_whatsapp_call_response_body.py +103 -0
- alibabacloud_cams20200606/models/_whatsapp_call_shrink_request.py +100 -0
- {alibabacloud_cams20200606-4.0.0.dist-info → alibabacloud_cams20200606-4.1.0.dist-info}/METADATA +2 -2
- {alibabacloud_cams20200606-4.0.0.dist-info → alibabacloud_cams20200606-4.1.0.dist-info}/RECORD +14 -10
- {alibabacloud_cams20200606-4.0.0.dist-info → alibabacloud_cams20200606-4.1.0.dist-info}/LICENSE +0 -0
- {alibabacloud_cams20200606-4.0.0.dist-info → alibabacloud_cams20200606-4.1.0.dist-info}/WHEEL +0 -0
- {alibabacloud_cams20200606-4.0.0.dist-info → alibabacloud_cams20200606-4.1.0.dist-info}/top_level.txt +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = '4.
|
|
1
|
+
__version__ = '4.1.0'
|
|
@@ -15843,3 +15843,113 @@ class Client(OpenApiClient):
|
|
|
15843
15843
|
) -> main_models.UpdateWabaMmlStatusResponse:
|
|
15844
15844
|
runtime = RuntimeOptions()
|
|
15845
15845
|
return await self.update_waba_mml_status_with_options_async(request, runtime)
|
|
15846
|
+
|
|
15847
|
+
def whatsapp_call_with_options(
|
|
15848
|
+
self,
|
|
15849
|
+
tmp_req: main_models.WhatsappCallRequest,
|
|
15850
|
+
runtime: RuntimeOptions,
|
|
15851
|
+
) -> main_models.WhatsappCallResponse:
|
|
15852
|
+
tmp_req.validate()
|
|
15853
|
+
request = main_models.WhatsappCallShrinkRequest()
|
|
15854
|
+
Utils.convert(tmp_req, request)
|
|
15855
|
+
if not DaraCore.is_null(tmp_req.session):
|
|
15856
|
+
request.session_shrink = Utils.array_to_string_with_specified_style(tmp_req.session, 'Session', 'json')
|
|
15857
|
+
query = {}
|
|
15858
|
+
if not DaraCore.is_null(request.business_number):
|
|
15859
|
+
query['BusinessNumber'] = request.business_number
|
|
15860
|
+
if not DaraCore.is_null(request.call_action):
|
|
15861
|
+
query['CallAction'] = request.call_action
|
|
15862
|
+
if not DaraCore.is_null(request.call_id):
|
|
15863
|
+
query['CallId'] = request.call_id
|
|
15864
|
+
if not DaraCore.is_null(request.cust_space_id):
|
|
15865
|
+
query['CustSpaceId'] = request.cust_space_id
|
|
15866
|
+
if not DaraCore.is_null(request.owner_id):
|
|
15867
|
+
query['OwnerId'] = request.owner_id
|
|
15868
|
+
if not DaraCore.is_null(request.resource_owner_account):
|
|
15869
|
+
query['ResourceOwnerAccount'] = request.resource_owner_account
|
|
15870
|
+
if not DaraCore.is_null(request.resource_owner_id):
|
|
15871
|
+
query['ResourceOwnerId'] = request.resource_owner_id
|
|
15872
|
+
if not DaraCore.is_null(request.session_shrink):
|
|
15873
|
+
query['Session'] = request.session_shrink
|
|
15874
|
+
if not DaraCore.is_null(request.user_number):
|
|
15875
|
+
query['UserNumber'] = request.user_number
|
|
15876
|
+
req = open_api_util_models.OpenApiRequest(
|
|
15877
|
+
query = Utils.query(query)
|
|
15878
|
+
)
|
|
15879
|
+
params = open_api_util_models.Params(
|
|
15880
|
+
action = 'WhatsappCall',
|
|
15881
|
+
version = '2020-06-06',
|
|
15882
|
+
protocol = 'HTTPS',
|
|
15883
|
+
pathname = '/',
|
|
15884
|
+
method = 'POST',
|
|
15885
|
+
auth_type = 'AK',
|
|
15886
|
+
style = 'RPC',
|
|
15887
|
+
req_body_type = 'formData',
|
|
15888
|
+
body_type = 'json'
|
|
15889
|
+
)
|
|
15890
|
+
return DaraCore.from_map(
|
|
15891
|
+
main_models.WhatsappCallResponse(),
|
|
15892
|
+
self.call_api(params, req, runtime)
|
|
15893
|
+
)
|
|
15894
|
+
|
|
15895
|
+
async def whatsapp_call_with_options_async(
|
|
15896
|
+
self,
|
|
15897
|
+
tmp_req: main_models.WhatsappCallRequest,
|
|
15898
|
+
runtime: RuntimeOptions,
|
|
15899
|
+
) -> main_models.WhatsappCallResponse:
|
|
15900
|
+
tmp_req.validate()
|
|
15901
|
+
request = main_models.WhatsappCallShrinkRequest()
|
|
15902
|
+
Utils.convert(tmp_req, request)
|
|
15903
|
+
if not DaraCore.is_null(tmp_req.session):
|
|
15904
|
+
request.session_shrink = Utils.array_to_string_with_specified_style(tmp_req.session, 'Session', 'json')
|
|
15905
|
+
query = {}
|
|
15906
|
+
if not DaraCore.is_null(request.business_number):
|
|
15907
|
+
query['BusinessNumber'] = request.business_number
|
|
15908
|
+
if not DaraCore.is_null(request.call_action):
|
|
15909
|
+
query['CallAction'] = request.call_action
|
|
15910
|
+
if not DaraCore.is_null(request.call_id):
|
|
15911
|
+
query['CallId'] = request.call_id
|
|
15912
|
+
if not DaraCore.is_null(request.cust_space_id):
|
|
15913
|
+
query['CustSpaceId'] = request.cust_space_id
|
|
15914
|
+
if not DaraCore.is_null(request.owner_id):
|
|
15915
|
+
query['OwnerId'] = request.owner_id
|
|
15916
|
+
if not DaraCore.is_null(request.resource_owner_account):
|
|
15917
|
+
query['ResourceOwnerAccount'] = request.resource_owner_account
|
|
15918
|
+
if not DaraCore.is_null(request.resource_owner_id):
|
|
15919
|
+
query['ResourceOwnerId'] = request.resource_owner_id
|
|
15920
|
+
if not DaraCore.is_null(request.session_shrink):
|
|
15921
|
+
query['Session'] = request.session_shrink
|
|
15922
|
+
if not DaraCore.is_null(request.user_number):
|
|
15923
|
+
query['UserNumber'] = request.user_number
|
|
15924
|
+
req = open_api_util_models.OpenApiRequest(
|
|
15925
|
+
query = Utils.query(query)
|
|
15926
|
+
)
|
|
15927
|
+
params = open_api_util_models.Params(
|
|
15928
|
+
action = 'WhatsappCall',
|
|
15929
|
+
version = '2020-06-06',
|
|
15930
|
+
protocol = 'HTTPS',
|
|
15931
|
+
pathname = '/',
|
|
15932
|
+
method = 'POST',
|
|
15933
|
+
auth_type = 'AK',
|
|
15934
|
+
style = 'RPC',
|
|
15935
|
+
req_body_type = 'formData',
|
|
15936
|
+
body_type = 'json'
|
|
15937
|
+
)
|
|
15938
|
+
return DaraCore.from_map(
|
|
15939
|
+
main_models.WhatsappCallResponse(),
|
|
15940
|
+
await self.call_api_async(params, req, runtime)
|
|
15941
|
+
)
|
|
15942
|
+
|
|
15943
|
+
def whatsapp_call(
|
|
15944
|
+
self,
|
|
15945
|
+
request: main_models.WhatsappCallRequest,
|
|
15946
|
+
) -> main_models.WhatsappCallResponse:
|
|
15947
|
+
runtime = RuntimeOptions()
|
|
15948
|
+
return self.whatsapp_call_with_options(request, runtime)
|
|
15949
|
+
|
|
15950
|
+
async def whatsapp_call_async(
|
|
15951
|
+
self,
|
|
15952
|
+
request: main_models.WhatsappCallRequest,
|
|
15953
|
+
) -> main_models.WhatsappCallResponse:
|
|
15954
|
+
runtime = RuntimeOptions()
|
|
15955
|
+
return await self.whatsapp_call_with_options_async(request, runtime)
|
|
@@ -542,6 +542,10 @@ from ._update_phone_webhook_response import UpdatePhoneWebhookResponse
|
|
|
542
542
|
from ._update_waba_mml_status_request import UpdateWabaMmlStatusRequest
|
|
543
543
|
from ._update_waba_mml_status_response_body import UpdateWabaMmlStatusResponseBody
|
|
544
544
|
from ._update_waba_mml_status_response import UpdateWabaMmlStatusResponse
|
|
545
|
+
from ._whatsapp_call_request import WhatsappCallRequest
|
|
546
|
+
from ._whatsapp_call_shrink_request import WhatsappCallShrinkRequest
|
|
547
|
+
from ._whatsapp_call_response_body import WhatsappCallResponseBody
|
|
548
|
+
from ._whatsapp_call_response import WhatsappCallResponse
|
|
545
549
|
from ._add_address_recover_suspend_request import AddAddressRecoverSuspendRequestAuditRecord
|
|
546
550
|
from ._add_audit_viber_open_request import AddAuditViberOpenRequestAuditRecordCompanyAddress
|
|
547
551
|
from ._add_audit_viber_open_request import AddAuditViberOpenRequestAuditRecordCompanyTel
|
|
@@ -552,6 +556,11 @@ from ._bind_instagram_page_response_body import BindInstagramPageResponseBodyDat
|
|
|
552
556
|
from ._bind_messenger_page_response_body import BindMessengerPageResponseBodyData
|
|
553
557
|
from ._chatapp_bind_waba_response_body import ChatappBindWabaResponseBodyData
|
|
554
558
|
from ._chatapp_migration_verified_response_body import ChatappMigrationVerifiedResponseBodyData
|
|
559
|
+
from ._chatapp_sync_phone_number_response_body import ChatappSyncPhoneNumberResponseBodyPhoneNumbersCallingConfigureCallingCallHoursHolidaySchedule
|
|
560
|
+
from ._chatapp_sync_phone_number_response_body import ChatappSyncPhoneNumberResponseBodyPhoneNumbersCallingConfigureCallingCallHoursWeeklyOperatingHours
|
|
561
|
+
from ._chatapp_sync_phone_number_response_body import ChatappSyncPhoneNumberResponseBodyPhoneNumbersCallingConfigureCallingCallHours
|
|
562
|
+
from ._chatapp_sync_phone_number_response_body import ChatappSyncPhoneNumberResponseBodyPhoneNumbersCallingConfigureCalling
|
|
563
|
+
from ._chatapp_sync_phone_number_response_body import ChatappSyncPhoneNumberResponseBodyPhoneNumbersCallingConfigure
|
|
555
564
|
from ._chatapp_sync_phone_number_response_body import ChatappSyncPhoneNumberResponseBodyPhoneNumbers
|
|
556
565
|
from ._copy_template_response_body import CopyTemplateResponseBodyData
|
|
557
566
|
from ._create_chatapp_migration_initiate_response_body import CreateChatappMigrationInitiateResponseBodyData
|
|
@@ -659,6 +668,11 @@ from ._modify_chatapp_template_request import ModifyChatappTemplateRequestCompon
|
|
|
659
668
|
from ._modify_chatapp_template_response_body import ModifyChatappTemplateResponseBodyData
|
|
660
669
|
from ._modify_flow_response_body import ModifyFlowResponseBodyData
|
|
661
670
|
from ._query_chatapp_bind_waba_response_body import QueryChatappBindWabaResponseBodyData
|
|
671
|
+
from ._query_chatapp_phone_numbers_response_body import QueryChatappPhoneNumbersResponseBodyPhoneNumbersCallingConfigureCallingCallHoursHolidaySchedule
|
|
672
|
+
from ._query_chatapp_phone_numbers_response_body import QueryChatappPhoneNumbersResponseBodyPhoneNumbersCallingConfigureCallingCallHoursWeeklyOperatingHours
|
|
673
|
+
from ._query_chatapp_phone_numbers_response_body import QueryChatappPhoneNumbersResponseBodyPhoneNumbersCallingConfigureCallingCallHours
|
|
674
|
+
from ._query_chatapp_phone_numbers_response_body import QueryChatappPhoneNumbersResponseBodyPhoneNumbersCallingConfigureCalling
|
|
675
|
+
from ._query_chatapp_phone_numbers_response_body import QueryChatappPhoneNumbersResponseBodyPhoneNumbersCallingConfigure
|
|
662
676
|
from ._query_chatapp_phone_numbers_response_body import QueryChatappPhoneNumbersResponseBodyPhoneNumbers
|
|
663
677
|
from ._query_instance_response_body import QueryInstanceResponseBodyData
|
|
664
678
|
from ._query_phone_business_profile_response_body import QueryPhoneBusinessProfileResponseBodyData
|
|
@@ -680,6 +694,8 @@ from ._update_conversational_automation_request import UpdateConversationalAutom
|
|
|
680
694
|
from ._update_flow_jsonasset_response_body import UpdateFlowJSONAssetResponseBodyData
|
|
681
695
|
from ._update_instance_response_body import UpdateInstanceResponseBodyData
|
|
682
696
|
from ._update_phone_message_qrdl_response_body import UpdatePhoneMessageQrdlResponseBodyData
|
|
697
|
+
from ._whatsapp_call_request import WhatsappCallRequestSession
|
|
698
|
+
from ._whatsapp_call_response_body import WhatsappCallResponseBodyModel
|
|
683
699
|
|
|
684
700
|
__all__ = [
|
|
685
701
|
AddAddressRecoverSuspendRequest,
|
|
@@ -1222,6 +1238,10 @@ __all__ = [
|
|
|
1222
1238
|
UpdateWabaMmlStatusRequest,
|
|
1223
1239
|
UpdateWabaMmlStatusResponseBody,
|
|
1224
1240
|
UpdateWabaMmlStatusResponse,
|
|
1241
|
+
WhatsappCallRequest,
|
|
1242
|
+
WhatsappCallShrinkRequest,
|
|
1243
|
+
WhatsappCallResponseBody,
|
|
1244
|
+
WhatsappCallResponse,
|
|
1225
1245
|
AddAddressRecoverSuspendRequestAuditRecord,
|
|
1226
1246
|
AddAuditViberOpenRequestAuditRecordCompanyAddress,
|
|
1227
1247
|
AddAuditViberOpenRequestAuditRecordCompanyTel,
|
|
@@ -1232,6 +1252,11 @@ __all__ = [
|
|
|
1232
1252
|
BindMessengerPageResponseBodyData,
|
|
1233
1253
|
ChatappBindWabaResponseBodyData,
|
|
1234
1254
|
ChatappMigrationVerifiedResponseBodyData,
|
|
1255
|
+
ChatappSyncPhoneNumberResponseBodyPhoneNumbersCallingConfigureCallingCallHoursHolidaySchedule,
|
|
1256
|
+
ChatappSyncPhoneNumberResponseBodyPhoneNumbersCallingConfigureCallingCallHoursWeeklyOperatingHours,
|
|
1257
|
+
ChatappSyncPhoneNumberResponseBodyPhoneNumbersCallingConfigureCallingCallHours,
|
|
1258
|
+
ChatappSyncPhoneNumberResponseBodyPhoneNumbersCallingConfigureCalling,
|
|
1259
|
+
ChatappSyncPhoneNumberResponseBodyPhoneNumbersCallingConfigure,
|
|
1235
1260
|
ChatappSyncPhoneNumberResponseBodyPhoneNumbers,
|
|
1236
1261
|
CopyTemplateResponseBodyData,
|
|
1237
1262
|
CreateChatappMigrationInitiateResponseBodyData,
|
|
@@ -1339,6 +1364,11 @@ __all__ = [
|
|
|
1339
1364
|
ModifyChatappTemplateResponseBodyData,
|
|
1340
1365
|
ModifyFlowResponseBodyData,
|
|
1341
1366
|
QueryChatappBindWabaResponseBodyData,
|
|
1367
|
+
QueryChatappPhoneNumbersResponseBodyPhoneNumbersCallingConfigureCallingCallHoursHolidaySchedule,
|
|
1368
|
+
QueryChatappPhoneNumbersResponseBodyPhoneNumbersCallingConfigureCallingCallHoursWeeklyOperatingHours,
|
|
1369
|
+
QueryChatappPhoneNumbersResponseBodyPhoneNumbersCallingConfigureCallingCallHours,
|
|
1370
|
+
QueryChatappPhoneNumbersResponseBodyPhoneNumbersCallingConfigureCalling,
|
|
1371
|
+
QueryChatappPhoneNumbersResponseBodyPhoneNumbersCallingConfigure,
|
|
1342
1372
|
QueryChatappPhoneNumbersResponseBodyPhoneNumbers,
|
|
1343
1373
|
QueryInstanceResponseBodyData,
|
|
1344
1374
|
QueryPhoneBusinessProfileResponseBodyData,
|
|
@@ -1359,5 +1389,7 @@ __all__ = [
|
|
|
1359
1389
|
UpdateConversationalAutomationRequestCommands,
|
|
1360
1390
|
UpdateFlowJSONAssetResponseBodyData,
|
|
1361
1391
|
UpdateInstanceResponseBodyData,
|
|
1362
|
-
UpdatePhoneMessageQrdlResponseBodyData
|
|
1392
|
+
UpdatePhoneMessageQrdlResponseBodyData,
|
|
1393
|
+
WhatsappCallRequestSession,
|
|
1394
|
+
WhatsappCallResponseBodyModel
|
|
1363
1395
|
]
|
|
@@ -97,6 +97,7 @@ class ChatappSyncPhoneNumberResponseBody(DaraModel):
|
|
|
97
97
|
class ChatappSyncPhoneNumberResponseBodyPhoneNumbers(DaraModel):
|
|
98
98
|
def __init__(
|
|
99
99
|
self,
|
|
100
|
+
calling_configure: main_models.ChatappSyncPhoneNumberResponseBodyPhoneNumbersCallingConfigure = None,
|
|
100
101
|
code_verification_status: str = None,
|
|
101
102
|
is_official: str = None,
|
|
102
103
|
messaging_limit_tier: str = None,
|
|
@@ -111,6 +112,7 @@ class ChatappSyncPhoneNumberResponseBodyPhoneNumbers(DaraModel):
|
|
|
111
112
|
up_queue: str = None,
|
|
112
113
|
verified_name: str = None,
|
|
113
114
|
):
|
|
115
|
+
self.calling_configure = calling_configure
|
|
114
116
|
# The verification state of the phone number.
|
|
115
117
|
#
|
|
116
118
|
# Valid values:
|
|
@@ -166,13 +168,17 @@ class ChatappSyncPhoneNumberResponseBodyPhoneNumbers(DaraModel):
|
|
|
166
168
|
self.verified_name = verified_name
|
|
167
169
|
|
|
168
170
|
def validate(self):
|
|
169
|
-
|
|
171
|
+
if self.calling_configure:
|
|
172
|
+
self.calling_configure.validate()
|
|
170
173
|
|
|
171
174
|
def to_map(self):
|
|
172
175
|
result = dict()
|
|
173
176
|
_map = super().to_map()
|
|
174
177
|
if _map is not None:
|
|
175
178
|
result = _map
|
|
179
|
+
if self.calling_configure is not None:
|
|
180
|
+
result['CallingConfigure'] = self.calling_configure.to_map()
|
|
181
|
+
|
|
176
182
|
if self.code_verification_status is not None:
|
|
177
183
|
result['CodeVerificationStatus'] = self.code_verification_status
|
|
178
184
|
|
|
@@ -216,6 +222,10 @@ class ChatappSyncPhoneNumberResponseBodyPhoneNumbers(DaraModel):
|
|
|
216
222
|
|
|
217
223
|
def from_map(self, m: dict = None):
|
|
218
224
|
m = m or dict()
|
|
225
|
+
if m.get('CallingConfigure') is not None:
|
|
226
|
+
temp_model = main_models.ChatappSyncPhoneNumberResponseBodyPhoneNumbersCallingConfigure()
|
|
227
|
+
self.calling_configure = temp_model.from_map(m.get('CallingConfigure'))
|
|
228
|
+
|
|
219
229
|
if m.get('CodeVerificationStatus') is not None:
|
|
220
230
|
self.code_verification_status = m.get('CodeVerificationStatus')
|
|
221
231
|
|
|
@@ -257,3 +267,255 @@ class ChatappSyncPhoneNumberResponseBodyPhoneNumbers(DaraModel):
|
|
|
257
267
|
|
|
258
268
|
return self
|
|
259
269
|
|
|
270
|
+
class ChatappSyncPhoneNumberResponseBodyPhoneNumbersCallingConfigure(DaraModel):
|
|
271
|
+
def __init__(
|
|
272
|
+
self,
|
|
273
|
+
calling: main_models.ChatappSyncPhoneNumberResponseBodyPhoneNumbersCallingConfigureCalling = None,
|
|
274
|
+
calling_callback_url: str = None,
|
|
275
|
+
max_talk_time: int = None,
|
|
276
|
+
):
|
|
277
|
+
self.calling = calling
|
|
278
|
+
self.calling_callback_url = calling_callback_url
|
|
279
|
+
self.max_talk_time = max_talk_time
|
|
280
|
+
|
|
281
|
+
def validate(self):
|
|
282
|
+
if self.calling:
|
|
283
|
+
self.calling.validate()
|
|
284
|
+
|
|
285
|
+
def to_map(self):
|
|
286
|
+
result = dict()
|
|
287
|
+
_map = super().to_map()
|
|
288
|
+
if _map is not None:
|
|
289
|
+
result = _map
|
|
290
|
+
if self.calling is not None:
|
|
291
|
+
result['Calling'] = self.calling.to_map()
|
|
292
|
+
|
|
293
|
+
if self.calling_callback_url is not None:
|
|
294
|
+
result['CallingCallbackUrl'] = self.calling_callback_url
|
|
295
|
+
|
|
296
|
+
if self.max_talk_time is not None:
|
|
297
|
+
result['MaxTalkTime'] = self.max_talk_time
|
|
298
|
+
|
|
299
|
+
return result
|
|
300
|
+
|
|
301
|
+
def from_map(self, m: dict = None):
|
|
302
|
+
m = m or dict()
|
|
303
|
+
if m.get('Calling') is not None:
|
|
304
|
+
temp_model = main_models.ChatappSyncPhoneNumberResponseBodyPhoneNumbersCallingConfigureCalling()
|
|
305
|
+
self.calling = temp_model.from_map(m.get('Calling'))
|
|
306
|
+
|
|
307
|
+
if m.get('CallingCallbackUrl') is not None:
|
|
308
|
+
self.calling_callback_url = m.get('CallingCallbackUrl')
|
|
309
|
+
|
|
310
|
+
if m.get('MaxTalkTime') is not None:
|
|
311
|
+
self.max_talk_time = m.get('MaxTalkTime')
|
|
312
|
+
|
|
313
|
+
return self
|
|
314
|
+
|
|
315
|
+
class ChatappSyncPhoneNumberResponseBodyPhoneNumbersCallingConfigureCalling(DaraModel):
|
|
316
|
+
def __init__(
|
|
317
|
+
self,
|
|
318
|
+
call_hours: main_models.ChatappSyncPhoneNumberResponseBodyPhoneNumbersCallingConfigureCallingCallHours = None,
|
|
319
|
+
call_icon_visibility: str = None,
|
|
320
|
+
callback_permission_status: str = None,
|
|
321
|
+
status: str = None,
|
|
322
|
+
):
|
|
323
|
+
self.call_hours = call_hours
|
|
324
|
+
self.call_icon_visibility = call_icon_visibility
|
|
325
|
+
self.callback_permission_status = callback_permission_status
|
|
326
|
+
self.status = status
|
|
327
|
+
|
|
328
|
+
def validate(self):
|
|
329
|
+
if self.call_hours:
|
|
330
|
+
self.call_hours.validate()
|
|
331
|
+
|
|
332
|
+
def to_map(self):
|
|
333
|
+
result = dict()
|
|
334
|
+
_map = super().to_map()
|
|
335
|
+
if _map is not None:
|
|
336
|
+
result = _map
|
|
337
|
+
if self.call_hours is not None:
|
|
338
|
+
result['CallHours'] = self.call_hours.to_map()
|
|
339
|
+
|
|
340
|
+
if self.call_icon_visibility is not None:
|
|
341
|
+
result['CallIconVisibility'] = self.call_icon_visibility
|
|
342
|
+
|
|
343
|
+
if self.callback_permission_status is not None:
|
|
344
|
+
result['CallbackPermissionStatus'] = self.callback_permission_status
|
|
345
|
+
|
|
346
|
+
if self.status is not None:
|
|
347
|
+
result['Status'] = self.status
|
|
348
|
+
|
|
349
|
+
return result
|
|
350
|
+
|
|
351
|
+
def from_map(self, m: dict = None):
|
|
352
|
+
m = m or dict()
|
|
353
|
+
if m.get('CallHours') is not None:
|
|
354
|
+
temp_model = main_models.ChatappSyncPhoneNumberResponseBodyPhoneNumbersCallingConfigureCallingCallHours()
|
|
355
|
+
self.call_hours = temp_model.from_map(m.get('CallHours'))
|
|
356
|
+
|
|
357
|
+
if m.get('CallIconVisibility') is not None:
|
|
358
|
+
self.call_icon_visibility = m.get('CallIconVisibility')
|
|
359
|
+
|
|
360
|
+
if m.get('CallbackPermissionStatus') is not None:
|
|
361
|
+
self.callback_permission_status = m.get('CallbackPermissionStatus')
|
|
362
|
+
|
|
363
|
+
if m.get('Status') is not None:
|
|
364
|
+
self.status = m.get('Status')
|
|
365
|
+
|
|
366
|
+
return self
|
|
367
|
+
|
|
368
|
+
class ChatappSyncPhoneNumberResponseBodyPhoneNumbersCallingConfigureCallingCallHours(DaraModel):
|
|
369
|
+
def __init__(
|
|
370
|
+
self,
|
|
371
|
+
holiday_schedule: List[main_models.ChatappSyncPhoneNumberResponseBodyPhoneNumbersCallingConfigureCallingCallHoursHolidaySchedule] = None,
|
|
372
|
+
status: str = None,
|
|
373
|
+
timezone_id: str = None,
|
|
374
|
+
weekly_operating_hours: List[main_models.ChatappSyncPhoneNumberResponseBodyPhoneNumbersCallingConfigureCallingCallHoursWeeklyOperatingHours] = None,
|
|
375
|
+
):
|
|
376
|
+
self.holiday_schedule = holiday_schedule
|
|
377
|
+
self.status = status
|
|
378
|
+
self.timezone_id = timezone_id
|
|
379
|
+
self.weekly_operating_hours = weekly_operating_hours
|
|
380
|
+
|
|
381
|
+
def validate(self):
|
|
382
|
+
if self.holiday_schedule:
|
|
383
|
+
for v1 in self.holiday_schedule:
|
|
384
|
+
if v1:
|
|
385
|
+
v1.validate()
|
|
386
|
+
if self.weekly_operating_hours:
|
|
387
|
+
for v1 in self.weekly_operating_hours:
|
|
388
|
+
if v1:
|
|
389
|
+
v1.validate()
|
|
390
|
+
|
|
391
|
+
def to_map(self):
|
|
392
|
+
result = dict()
|
|
393
|
+
_map = super().to_map()
|
|
394
|
+
if _map is not None:
|
|
395
|
+
result = _map
|
|
396
|
+
result['HolidaySchedule'] = []
|
|
397
|
+
if self.holiday_schedule is not None:
|
|
398
|
+
for k1 in self.holiday_schedule:
|
|
399
|
+
result['HolidaySchedule'].append(k1.to_map() if k1 else None)
|
|
400
|
+
|
|
401
|
+
if self.status is not None:
|
|
402
|
+
result['Status'] = self.status
|
|
403
|
+
|
|
404
|
+
if self.timezone_id is not None:
|
|
405
|
+
result['TimezoneId'] = self.timezone_id
|
|
406
|
+
|
|
407
|
+
result['WeeklyOperatingHours'] = []
|
|
408
|
+
if self.weekly_operating_hours is not None:
|
|
409
|
+
for k1 in self.weekly_operating_hours:
|
|
410
|
+
result['WeeklyOperatingHours'].append(k1.to_map() if k1 else None)
|
|
411
|
+
|
|
412
|
+
return result
|
|
413
|
+
|
|
414
|
+
def from_map(self, m: dict = None):
|
|
415
|
+
m = m or dict()
|
|
416
|
+
self.holiday_schedule = []
|
|
417
|
+
if m.get('HolidaySchedule') is not None:
|
|
418
|
+
for k1 in m.get('HolidaySchedule'):
|
|
419
|
+
temp_model = main_models.ChatappSyncPhoneNumberResponseBodyPhoneNumbersCallingConfigureCallingCallHoursHolidaySchedule()
|
|
420
|
+
self.holiday_schedule.append(temp_model.from_map(k1))
|
|
421
|
+
|
|
422
|
+
if m.get('Status') is not None:
|
|
423
|
+
self.status = m.get('Status')
|
|
424
|
+
|
|
425
|
+
if m.get('TimezoneId') is not None:
|
|
426
|
+
self.timezone_id = m.get('TimezoneId')
|
|
427
|
+
|
|
428
|
+
self.weekly_operating_hours = []
|
|
429
|
+
if m.get('WeeklyOperatingHours') is not None:
|
|
430
|
+
for k1 in m.get('WeeklyOperatingHours'):
|
|
431
|
+
temp_model = main_models.ChatappSyncPhoneNumberResponseBodyPhoneNumbersCallingConfigureCallingCallHoursWeeklyOperatingHours()
|
|
432
|
+
self.weekly_operating_hours.append(temp_model.from_map(k1))
|
|
433
|
+
|
|
434
|
+
return self
|
|
435
|
+
|
|
436
|
+
class ChatappSyncPhoneNumberResponseBodyPhoneNumbersCallingConfigureCallingCallHoursWeeklyOperatingHours(DaraModel):
|
|
437
|
+
def __init__(
|
|
438
|
+
self,
|
|
439
|
+
close_time: str = None,
|
|
440
|
+
day_of_week: str = None,
|
|
441
|
+
open_time: str = None,
|
|
442
|
+
):
|
|
443
|
+
self.close_time = close_time
|
|
444
|
+
self.day_of_week = day_of_week
|
|
445
|
+
self.open_time = open_time
|
|
446
|
+
|
|
447
|
+
def validate(self):
|
|
448
|
+
pass
|
|
449
|
+
|
|
450
|
+
def to_map(self):
|
|
451
|
+
result = dict()
|
|
452
|
+
_map = super().to_map()
|
|
453
|
+
if _map is not None:
|
|
454
|
+
result = _map
|
|
455
|
+
if self.close_time is not None:
|
|
456
|
+
result['CloseTime'] = self.close_time
|
|
457
|
+
|
|
458
|
+
if self.day_of_week is not None:
|
|
459
|
+
result['DayOfWeek'] = self.day_of_week
|
|
460
|
+
|
|
461
|
+
if self.open_time is not None:
|
|
462
|
+
result['OpenTime'] = self.open_time
|
|
463
|
+
|
|
464
|
+
return result
|
|
465
|
+
|
|
466
|
+
def from_map(self, m: dict = None):
|
|
467
|
+
m = m or dict()
|
|
468
|
+
if m.get('CloseTime') is not None:
|
|
469
|
+
self.close_time = m.get('CloseTime')
|
|
470
|
+
|
|
471
|
+
if m.get('DayOfWeek') is not None:
|
|
472
|
+
self.day_of_week = m.get('DayOfWeek')
|
|
473
|
+
|
|
474
|
+
if m.get('OpenTime') is not None:
|
|
475
|
+
self.open_time = m.get('OpenTime')
|
|
476
|
+
|
|
477
|
+
return self
|
|
478
|
+
|
|
479
|
+
class ChatappSyncPhoneNumberResponseBodyPhoneNumbersCallingConfigureCallingCallHoursHolidaySchedule(DaraModel):
|
|
480
|
+
def __init__(
|
|
481
|
+
self,
|
|
482
|
+
date: str = None,
|
|
483
|
+
end_time: str = None,
|
|
484
|
+
start_time: str = None,
|
|
485
|
+
):
|
|
486
|
+
self.date = date
|
|
487
|
+
self.end_time = end_time
|
|
488
|
+
self.start_time = start_time
|
|
489
|
+
|
|
490
|
+
def validate(self):
|
|
491
|
+
pass
|
|
492
|
+
|
|
493
|
+
def to_map(self):
|
|
494
|
+
result = dict()
|
|
495
|
+
_map = super().to_map()
|
|
496
|
+
if _map is not None:
|
|
497
|
+
result = _map
|
|
498
|
+
if self.date is not None:
|
|
499
|
+
result['Date'] = self.date
|
|
500
|
+
|
|
501
|
+
if self.end_time is not None:
|
|
502
|
+
result['EndTime'] = self.end_time
|
|
503
|
+
|
|
504
|
+
if self.start_time is not None:
|
|
505
|
+
result['StartTime'] = self.start_time
|
|
506
|
+
|
|
507
|
+
return result
|
|
508
|
+
|
|
509
|
+
def from_map(self, m: dict = None):
|
|
510
|
+
m = m or dict()
|
|
511
|
+
if m.get('Date') is not None:
|
|
512
|
+
self.date = m.get('Date')
|
|
513
|
+
|
|
514
|
+
if m.get('EndTime') is not None:
|
|
515
|
+
self.end_time = m.get('EndTime')
|
|
516
|
+
|
|
517
|
+
if m.get('StartTime') is not None:
|
|
518
|
+
self.start_time = m.get('StartTime')
|
|
519
|
+
|
|
520
|
+
return self
|
|
521
|
+
|
|
@@ -12,6 +12,7 @@ class QueryChatappPhoneNumbersResponseBody(DaraModel):
|
|
|
12
12
|
self,
|
|
13
13
|
access_denied_detail: str = None,
|
|
14
14
|
code: str = None,
|
|
15
|
+
data: str = None,
|
|
15
16
|
message: str = None,
|
|
16
17
|
phone_numbers: List[main_models.QueryChatappPhoneNumbersResponseBodyPhoneNumbers] = None,
|
|
17
18
|
request_id: str = None,
|
|
@@ -24,6 +25,7 @@ class QueryChatappPhoneNumbersResponseBody(DaraModel):
|
|
|
24
25
|
# * A value of OK indicates that the call is successful.
|
|
25
26
|
# * Other values indicate that the call fails. For more information, see [Error codes](https://help.aliyun.com/document_detail/196974.html).
|
|
26
27
|
self.code = code
|
|
28
|
+
self.data = data
|
|
27
29
|
# The message returned.
|
|
28
30
|
self.message = message
|
|
29
31
|
# The phone numbers.
|
|
@@ -53,6 +55,9 @@ class QueryChatappPhoneNumbersResponseBody(DaraModel):
|
|
|
53
55
|
if self.code is not None:
|
|
54
56
|
result['Code'] = self.code
|
|
55
57
|
|
|
58
|
+
if self.data is not None:
|
|
59
|
+
result['Data'] = self.data
|
|
60
|
+
|
|
56
61
|
if self.message is not None:
|
|
57
62
|
result['Message'] = self.message
|
|
58
63
|
|
|
@@ -77,6 +82,9 @@ class QueryChatappPhoneNumbersResponseBody(DaraModel):
|
|
|
77
82
|
if m.get('Code') is not None:
|
|
78
83
|
self.code = m.get('Code')
|
|
79
84
|
|
|
85
|
+
if m.get('Data') is not None:
|
|
86
|
+
self.data = m.get('Data')
|
|
87
|
+
|
|
80
88
|
if m.get('Message') is not None:
|
|
81
89
|
self.message = m.get('Message')
|
|
82
90
|
|
|
@@ -97,6 +105,7 @@ class QueryChatappPhoneNumbersResponseBody(DaraModel):
|
|
|
97
105
|
class QueryChatappPhoneNumbersResponseBodyPhoneNumbers(DaraModel):
|
|
98
106
|
def __init__(
|
|
99
107
|
self,
|
|
108
|
+
calling_configure: main_models.QueryChatappPhoneNumbersResponseBodyPhoneNumbersCallingConfigure = None,
|
|
100
109
|
code_verification_status: str = None,
|
|
101
110
|
is_official: str = None,
|
|
102
111
|
messaging_limit_tier: str = None,
|
|
@@ -111,6 +120,7 @@ class QueryChatappPhoneNumbersResponseBodyPhoneNumbers(DaraModel):
|
|
|
111
120
|
up_queue: str = None,
|
|
112
121
|
verified_name: str = None,
|
|
113
122
|
):
|
|
123
|
+
self.calling_configure = calling_configure
|
|
114
124
|
# The verification status of the phone number.
|
|
115
125
|
#
|
|
116
126
|
# Valid values:
|
|
@@ -176,13 +186,17 @@ class QueryChatappPhoneNumbersResponseBodyPhoneNumbers(DaraModel):
|
|
|
176
186
|
self.verified_name = verified_name
|
|
177
187
|
|
|
178
188
|
def validate(self):
|
|
179
|
-
|
|
189
|
+
if self.calling_configure:
|
|
190
|
+
self.calling_configure.validate()
|
|
180
191
|
|
|
181
192
|
def to_map(self):
|
|
182
193
|
result = dict()
|
|
183
194
|
_map = super().to_map()
|
|
184
195
|
if _map is not None:
|
|
185
196
|
result = _map
|
|
197
|
+
if self.calling_configure is not None:
|
|
198
|
+
result['CallingConfigure'] = self.calling_configure.to_map()
|
|
199
|
+
|
|
186
200
|
if self.code_verification_status is not None:
|
|
187
201
|
result['CodeVerificationStatus'] = self.code_verification_status
|
|
188
202
|
|
|
@@ -226,6 +240,10 @@ class QueryChatappPhoneNumbersResponseBodyPhoneNumbers(DaraModel):
|
|
|
226
240
|
|
|
227
241
|
def from_map(self, m: dict = None):
|
|
228
242
|
m = m or dict()
|
|
243
|
+
if m.get('CallingConfigure') is not None:
|
|
244
|
+
temp_model = main_models.QueryChatappPhoneNumbersResponseBodyPhoneNumbersCallingConfigure()
|
|
245
|
+
self.calling_configure = temp_model.from_map(m.get('CallingConfigure'))
|
|
246
|
+
|
|
229
247
|
if m.get('CodeVerificationStatus') is not None:
|
|
230
248
|
self.code_verification_status = m.get('CodeVerificationStatus')
|
|
231
249
|
|
|
@@ -267,3 +285,255 @@ class QueryChatappPhoneNumbersResponseBodyPhoneNumbers(DaraModel):
|
|
|
267
285
|
|
|
268
286
|
return self
|
|
269
287
|
|
|
288
|
+
class QueryChatappPhoneNumbersResponseBodyPhoneNumbersCallingConfigure(DaraModel):
|
|
289
|
+
def __init__(
|
|
290
|
+
self,
|
|
291
|
+
calling: main_models.QueryChatappPhoneNumbersResponseBodyPhoneNumbersCallingConfigureCalling = None,
|
|
292
|
+
calling_callback_url: str = None,
|
|
293
|
+
max_talk_time: int = None,
|
|
294
|
+
):
|
|
295
|
+
self.calling = calling
|
|
296
|
+
self.calling_callback_url = calling_callback_url
|
|
297
|
+
self.max_talk_time = max_talk_time
|
|
298
|
+
|
|
299
|
+
def validate(self):
|
|
300
|
+
if self.calling:
|
|
301
|
+
self.calling.validate()
|
|
302
|
+
|
|
303
|
+
def to_map(self):
|
|
304
|
+
result = dict()
|
|
305
|
+
_map = super().to_map()
|
|
306
|
+
if _map is not None:
|
|
307
|
+
result = _map
|
|
308
|
+
if self.calling is not None:
|
|
309
|
+
result['Calling'] = self.calling.to_map()
|
|
310
|
+
|
|
311
|
+
if self.calling_callback_url is not None:
|
|
312
|
+
result['CallingCallbackUrl'] = self.calling_callback_url
|
|
313
|
+
|
|
314
|
+
if self.max_talk_time is not None:
|
|
315
|
+
result['MaxTalkTime'] = self.max_talk_time
|
|
316
|
+
|
|
317
|
+
return result
|
|
318
|
+
|
|
319
|
+
def from_map(self, m: dict = None):
|
|
320
|
+
m = m or dict()
|
|
321
|
+
if m.get('Calling') is not None:
|
|
322
|
+
temp_model = main_models.QueryChatappPhoneNumbersResponseBodyPhoneNumbersCallingConfigureCalling()
|
|
323
|
+
self.calling = temp_model.from_map(m.get('Calling'))
|
|
324
|
+
|
|
325
|
+
if m.get('CallingCallbackUrl') is not None:
|
|
326
|
+
self.calling_callback_url = m.get('CallingCallbackUrl')
|
|
327
|
+
|
|
328
|
+
if m.get('MaxTalkTime') is not None:
|
|
329
|
+
self.max_talk_time = m.get('MaxTalkTime')
|
|
330
|
+
|
|
331
|
+
return self
|
|
332
|
+
|
|
333
|
+
class QueryChatappPhoneNumbersResponseBodyPhoneNumbersCallingConfigureCalling(DaraModel):
|
|
334
|
+
def __init__(
|
|
335
|
+
self,
|
|
336
|
+
call_hours: main_models.QueryChatappPhoneNumbersResponseBodyPhoneNumbersCallingConfigureCallingCallHours = None,
|
|
337
|
+
status: str = None,
|
|
338
|
+
):
|
|
339
|
+
self.call_hours = call_hours
|
|
340
|
+
self.status = status
|
|
341
|
+
|
|
342
|
+
def validate(self):
|
|
343
|
+
if self.call_hours:
|
|
344
|
+
self.call_hours.validate()
|
|
345
|
+
|
|
346
|
+
def to_map(self):
|
|
347
|
+
result = dict()
|
|
348
|
+
_map = super().to_map()
|
|
349
|
+
if _map is not None:
|
|
350
|
+
result = _map
|
|
351
|
+
if self.call_hours is not None:
|
|
352
|
+
result['CallHours'] = self.call_hours.to_map()
|
|
353
|
+
|
|
354
|
+
if self.status is not None:
|
|
355
|
+
result['Status'] = self.status
|
|
356
|
+
|
|
357
|
+
return result
|
|
358
|
+
|
|
359
|
+
def from_map(self, m: dict = None):
|
|
360
|
+
m = m or dict()
|
|
361
|
+
if m.get('CallHours') is not None:
|
|
362
|
+
temp_model = main_models.QueryChatappPhoneNumbersResponseBodyPhoneNumbersCallingConfigureCallingCallHours()
|
|
363
|
+
self.call_hours = temp_model.from_map(m.get('CallHours'))
|
|
364
|
+
|
|
365
|
+
if m.get('Status') is not None:
|
|
366
|
+
self.status = m.get('Status')
|
|
367
|
+
|
|
368
|
+
return self
|
|
369
|
+
|
|
370
|
+
class QueryChatappPhoneNumbersResponseBodyPhoneNumbersCallingConfigureCallingCallHours(DaraModel):
|
|
371
|
+
def __init__(
|
|
372
|
+
self,
|
|
373
|
+
call_icon_visibility: str = None,
|
|
374
|
+
callback_permission_status: str = None,
|
|
375
|
+
holiday_schedule: List[main_models.QueryChatappPhoneNumbersResponseBodyPhoneNumbersCallingConfigureCallingCallHoursHolidaySchedule] = None,
|
|
376
|
+
status: str = None,
|
|
377
|
+
timezone_id: str = None,
|
|
378
|
+
weekly_operating_hours: List[main_models.QueryChatappPhoneNumbersResponseBodyPhoneNumbersCallingConfigureCallingCallHoursWeeklyOperatingHours] = None,
|
|
379
|
+
):
|
|
380
|
+
self.call_icon_visibility = call_icon_visibility
|
|
381
|
+
self.callback_permission_status = callback_permission_status
|
|
382
|
+
self.holiday_schedule = holiday_schedule
|
|
383
|
+
self.status = status
|
|
384
|
+
self.timezone_id = timezone_id
|
|
385
|
+
self.weekly_operating_hours = weekly_operating_hours
|
|
386
|
+
|
|
387
|
+
def validate(self):
|
|
388
|
+
if self.holiday_schedule:
|
|
389
|
+
for v1 in self.holiday_schedule:
|
|
390
|
+
if v1:
|
|
391
|
+
v1.validate()
|
|
392
|
+
if self.weekly_operating_hours:
|
|
393
|
+
for v1 in self.weekly_operating_hours:
|
|
394
|
+
if v1:
|
|
395
|
+
v1.validate()
|
|
396
|
+
|
|
397
|
+
def to_map(self):
|
|
398
|
+
result = dict()
|
|
399
|
+
_map = super().to_map()
|
|
400
|
+
if _map is not None:
|
|
401
|
+
result = _map
|
|
402
|
+
if self.call_icon_visibility is not None:
|
|
403
|
+
result['CallIconVisibility'] = self.call_icon_visibility
|
|
404
|
+
|
|
405
|
+
if self.callback_permission_status is not None:
|
|
406
|
+
result['CallbackPermissionStatus'] = self.callback_permission_status
|
|
407
|
+
|
|
408
|
+
result['HolidaySchedule'] = []
|
|
409
|
+
if self.holiday_schedule is not None:
|
|
410
|
+
for k1 in self.holiday_schedule:
|
|
411
|
+
result['HolidaySchedule'].append(k1.to_map() if k1 else None)
|
|
412
|
+
|
|
413
|
+
if self.status is not None:
|
|
414
|
+
result['Status'] = self.status
|
|
415
|
+
|
|
416
|
+
if self.timezone_id is not None:
|
|
417
|
+
result['TimezoneId'] = self.timezone_id
|
|
418
|
+
|
|
419
|
+
result['WeeklyOperatingHours'] = []
|
|
420
|
+
if self.weekly_operating_hours is not None:
|
|
421
|
+
for k1 in self.weekly_operating_hours:
|
|
422
|
+
result['WeeklyOperatingHours'].append(k1.to_map() if k1 else None)
|
|
423
|
+
|
|
424
|
+
return result
|
|
425
|
+
|
|
426
|
+
def from_map(self, m: dict = None):
|
|
427
|
+
m = m or dict()
|
|
428
|
+
if m.get('CallIconVisibility') is not None:
|
|
429
|
+
self.call_icon_visibility = m.get('CallIconVisibility')
|
|
430
|
+
|
|
431
|
+
if m.get('CallbackPermissionStatus') is not None:
|
|
432
|
+
self.callback_permission_status = m.get('CallbackPermissionStatus')
|
|
433
|
+
|
|
434
|
+
self.holiday_schedule = []
|
|
435
|
+
if m.get('HolidaySchedule') is not None:
|
|
436
|
+
for k1 in m.get('HolidaySchedule'):
|
|
437
|
+
temp_model = main_models.QueryChatappPhoneNumbersResponseBodyPhoneNumbersCallingConfigureCallingCallHoursHolidaySchedule()
|
|
438
|
+
self.holiday_schedule.append(temp_model.from_map(k1))
|
|
439
|
+
|
|
440
|
+
if m.get('Status') is not None:
|
|
441
|
+
self.status = m.get('Status')
|
|
442
|
+
|
|
443
|
+
if m.get('TimezoneId') is not None:
|
|
444
|
+
self.timezone_id = m.get('TimezoneId')
|
|
445
|
+
|
|
446
|
+
self.weekly_operating_hours = []
|
|
447
|
+
if m.get('WeeklyOperatingHours') is not None:
|
|
448
|
+
for k1 in m.get('WeeklyOperatingHours'):
|
|
449
|
+
temp_model = main_models.QueryChatappPhoneNumbersResponseBodyPhoneNumbersCallingConfigureCallingCallHoursWeeklyOperatingHours()
|
|
450
|
+
self.weekly_operating_hours.append(temp_model.from_map(k1))
|
|
451
|
+
|
|
452
|
+
return self
|
|
453
|
+
|
|
454
|
+
class QueryChatappPhoneNumbersResponseBodyPhoneNumbersCallingConfigureCallingCallHoursWeeklyOperatingHours(DaraModel):
|
|
455
|
+
def __init__(
|
|
456
|
+
self,
|
|
457
|
+
close_time: str = None,
|
|
458
|
+
day_of_week: str = None,
|
|
459
|
+
open_time: str = None,
|
|
460
|
+
):
|
|
461
|
+
self.close_time = close_time
|
|
462
|
+
self.day_of_week = day_of_week
|
|
463
|
+
self.open_time = open_time
|
|
464
|
+
|
|
465
|
+
def validate(self):
|
|
466
|
+
pass
|
|
467
|
+
|
|
468
|
+
def to_map(self):
|
|
469
|
+
result = dict()
|
|
470
|
+
_map = super().to_map()
|
|
471
|
+
if _map is not None:
|
|
472
|
+
result = _map
|
|
473
|
+
if self.close_time is not None:
|
|
474
|
+
result['CloseTime'] = self.close_time
|
|
475
|
+
|
|
476
|
+
if self.day_of_week is not None:
|
|
477
|
+
result['DayOfWeek'] = self.day_of_week
|
|
478
|
+
|
|
479
|
+
if self.open_time is not None:
|
|
480
|
+
result['OpenTime'] = self.open_time
|
|
481
|
+
|
|
482
|
+
return result
|
|
483
|
+
|
|
484
|
+
def from_map(self, m: dict = None):
|
|
485
|
+
m = m or dict()
|
|
486
|
+
if m.get('CloseTime') is not None:
|
|
487
|
+
self.close_time = m.get('CloseTime')
|
|
488
|
+
|
|
489
|
+
if m.get('DayOfWeek') is not None:
|
|
490
|
+
self.day_of_week = m.get('DayOfWeek')
|
|
491
|
+
|
|
492
|
+
if m.get('OpenTime') is not None:
|
|
493
|
+
self.open_time = m.get('OpenTime')
|
|
494
|
+
|
|
495
|
+
return self
|
|
496
|
+
|
|
497
|
+
class QueryChatappPhoneNumbersResponseBodyPhoneNumbersCallingConfigureCallingCallHoursHolidaySchedule(DaraModel):
|
|
498
|
+
def __init__(
|
|
499
|
+
self,
|
|
500
|
+
date: str = None,
|
|
501
|
+
end_time: str = None,
|
|
502
|
+
start_time: str = None,
|
|
503
|
+
):
|
|
504
|
+
self.date = date
|
|
505
|
+
self.end_time = end_time
|
|
506
|
+
self.start_time = start_time
|
|
507
|
+
|
|
508
|
+
def validate(self):
|
|
509
|
+
pass
|
|
510
|
+
|
|
511
|
+
def to_map(self):
|
|
512
|
+
result = dict()
|
|
513
|
+
_map = super().to_map()
|
|
514
|
+
if _map is not None:
|
|
515
|
+
result = _map
|
|
516
|
+
if self.date is not None:
|
|
517
|
+
result['Date'] = self.date
|
|
518
|
+
|
|
519
|
+
if self.end_time is not None:
|
|
520
|
+
result['EndTime'] = self.end_time
|
|
521
|
+
|
|
522
|
+
if self.start_time is not None:
|
|
523
|
+
result['StartTime'] = self.start_time
|
|
524
|
+
|
|
525
|
+
return result
|
|
526
|
+
|
|
527
|
+
def from_map(self, m: dict = None):
|
|
528
|
+
m = m or dict()
|
|
529
|
+
if m.get('Date') is not None:
|
|
530
|
+
self.date = m.get('Date')
|
|
531
|
+
|
|
532
|
+
if m.get('EndTime') is not None:
|
|
533
|
+
self.end_time = m.get('EndTime')
|
|
534
|
+
|
|
535
|
+
if m.get('StartTime') is not None:
|
|
536
|
+
self.start_time = m.get('StartTime')
|
|
537
|
+
|
|
538
|
+
return self
|
|
539
|
+
|
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# This file is auto-generated, don't edit it. Thanks.
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
from alibabacloud_cams20200606 import models as main_models
|
|
6
|
+
from darabonba.model import DaraModel
|
|
7
|
+
|
|
8
|
+
class WhatsappCallRequest(DaraModel):
|
|
9
|
+
def __init__(
|
|
10
|
+
self,
|
|
11
|
+
business_number: str = None,
|
|
12
|
+
call_action: str = None,
|
|
13
|
+
call_id: str = None,
|
|
14
|
+
cust_space_id: str = None,
|
|
15
|
+
owner_id: int = None,
|
|
16
|
+
resource_owner_account: str = None,
|
|
17
|
+
resource_owner_id: int = None,
|
|
18
|
+
session: main_models.WhatsappCallRequestSession = None,
|
|
19
|
+
user_number: str = None,
|
|
20
|
+
):
|
|
21
|
+
# This parameter is required.
|
|
22
|
+
self.business_number = business_number
|
|
23
|
+
# This parameter is required.
|
|
24
|
+
self.call_action = call_action
|
|
25
|
+
self.call_id = call_id
|
|
26
|
+
# This parameter is required.
|
|
27
|
+
self.cust_space_id = cust_space_id
|
|
28
|
+
self.owner_id = owner_id
|
|
29
|
+
self.resource_owner_account = resource_owner_account
|
|
30
|
+
self.resource_owner_id = resource_owner_id
|
|
31
|
+
self.session = session
|
|
32
|
+
self.user_number = user_number
|
|
33
|
+
|
|
34
|
+
def validate(self):
|
|
35
|
+
if self.session:
|
|
36
|
+
self.session.validate()
|
|
37
|
+
|
|
38
|
+
def to_map(self):
|
|
39
|
+
result = dict()
|
|
40
|
+
_map = super().to_map()
|
|
41
|
+
if _map is not None:
|
|
42
|
+
result = _map
|
|
43
|
+
if self.business_number is not None:
|
|
44
|
+
result['BusinessNumber'] = self.business_number
|
|
45
|
+
|
|
46
|
+
if self.call_action is not None:
|
|
47
|
+
result['CallAction'] = self.call_action
|
|
48
|
+
|
|
49
|
+
if self.call_id is not None:
|
|
50
|
+
result['CallId'] = self.call_id
|
|
51
|
+
|
|
52
|
+
if self.cust_space_id is not None:
|
|
53
|
+
result['CustSpaceId'] = self.cust_space_id
|
|
54
|
+
|
|
55
|
+
if self.owner_id is not None:
|
|
56
|
+
result['OwnerId'] = self.owner_id
|
|
57
|
+
|
|
58
|
+
if self.resource_owner_account is not None:
|
|
59
|
+
result['ResourceOwnerAccount'] = self.resource_owner_account
|
|
60
|
+
|
|
61
|
+
if self.resource_owner_id is not None:
|
|
62
|
+
result['ResourceOwnerId'] = self.resource_owner_id
|
|
63
|
+
|
|
64
|
+
if self.session is not None:
|
|
65
|
+
result['Session'] = self.session.to_map()
|
|
66
|
+
|
|
67
|
+
if self.user_number is not None:
|
|
68
|
+
result['UserNumber'] = self.user_number
|
|
69
|
+
|
|
70
|
+
return result
|
|
71
|
+
|
|
72
|
+
def from_map(self, m: dict = None):
|
|
73
|
+
m = m or dict()
|
|
74
|
+
if m.get('BusinessNumber') is not None:
|
|
75
|
+
self.business_number = m.get('BusinessNumber')
|
|
76
|
+
|
|
77
|
+
if m.get('CallAction') is not None:
|
|
78
|
+
self.call_action = m.get('CallAction')
|
|
79
|
+
|
|
80
|
+
if m.get('CallId') is not None:
|
|
81
|
+
self.call_id = m.get('CallId')
|
|
82
|
+
|
|
83
|
+
if m.get('CustSpaceId') is not None:
|
|
84
|
+
self.cust_space_id = m.get('CustSpaceId')
|
|
85
|
+
|
|
86
|
+
if m.get('OwnerId') is not None:
|
|
87
|
+
self.owner_id = m.get('OwnerId')
|
|
88
|
+
|
|
89
|
+
if m.get('ResourceOwnerAccount') is not None:
|
|
90
|
+
self.resource_owner_account = m.get('ResourceOwnerAccount')
|
|
91
|
+
|
|
92
|
+
if m.get('ResourceOwnerId') is not None:
|
|
93
|
+
self.resource_owner_id = m.get('ResourceOwnerId')
|
|
94
|
+
|
|
95
|
+
if m.get('Session') is not None:
|
|
96
|
+
temp_model = main_models.WhatsappCallRequestSession()
|
|
97
|
+
self.session = temp_model.from_map(m.get('Session'))
|
|
98
|
+
|
|
99
|
+
if m.get('UserNumber') is not None:
|
|
100
|
+
self.user_number = m.get('UserNumber')
|
|
101
|
+
|
|
102
|
+
return self
|
|
103
|
+
|
|
104
|
+
class WhatsappCallRequestSession(DaraModel):
|
|
105
|
+
def __init__(
|
|
106
|
+
self,
|
|
107
|
+
sdp: str = None,
|
|
108
|
+
sdp_type: str = None,
|
|
109
|
+
):
|
|
110
|
+
self.sdp = sdp
|
|
111
|
+
self.sdp_type = sdp_type
|
|
112
|
+
|
|
113
|
+
def validate(self):
|
|
114
|
+
pass
|
|
115
|
+
|
|
116
|
+
def to_map(self):
|
|
117
|
+
result = dict()
|
|
118
|
+
_map = super().to_map()
|
|
119
|
+
if _map is not None:
|
|
120
|
+
result = _map
|
|
121
|
+
if self.sdp is not None:
|
|
122
|
+
result['Sdp'] = self.sdp
|
|
123
|
+
|
|
124
|
+
if self.sdp_type is not None:
|
|
125
|
+
result['SdpType'] = self.sdp_type
|
|
126
|
+
|
|
127
|
+
return result
|
|
128
|
+
|
|
129
|
+
def from_map(self, m: dict = None):
|
|
130
|
+
m = m or dict()
|
|
131
|
+
if m.get('Sdp') is not None:
|
|
132
|
+
self.sdp = m.get('Sdp')
|
|
133
|
+
|
|
134
|
+
if m.get('SdpType') is not None:
|
|
135
|
+
self.sdp_type = m.get('SdpType')
|
|
136
|
+
|
|
137
|
+
return self
|
|
138
|
+
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# This file is auto-generated, don't edit it. Thanks.
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
from typing import Dict
|
|
6
|
+
|
|
7
|
+
from alibabacloud_cams20200606 import models as main_models
|
|
8
|
+
from darabonba.model import DaraModel
|
|
9
|
+
|
|
10
|
+
class WhatsappCallResponse(DaraModel):
|
|
11
|
+
def __init__(
|
|
12
|
+
self,
|
|
13
|
+
headers: Dict[str, str] = None,
|
|
14
|
+
status_code: int = None,
|
|
15
|
+
body: main_models.WhatsappCallResponseBody = None,
|
|
16
|
+
):
|
|
17
|
+
self.headers = headers
|
|
18
|
+
self.status_code = status_code
|
|
19
|
+
self.body = body
|
|
20
|
+
|
|
21
|
+
def validate(self):
|
|
22
|
+
if self.body:
|
|
23
|
+
self.body.validate()
|
|
24
|
+
|
|
25
|
+
def to_map(self):
|
|
26
|
+
result = dict()
|
|
27
|
+
_map = super().to_map()
|
|
28
|
+
if _map is not None:
|
|
29
|
+
result = _map
|
|
30
|
+
if self.headers is not None:
|
|
31
|
+
result['headers'] = self.headers
|
|
32
|
+
|
|
33
|
+
if self.status_code is not None:
|
|
34
|
+
result['statusCode'] = self.status_code
|
|
35
|
+
|
|
36
|
+
if self.body is not None:
|
|
37
|
+
result['body'] = self.body.to_map()
|
|
38
|
+
|
|
39
|
+
return result
|
|
40
|
+
|
|
41
|
+
def from_map(self, m: dict = None):
|
|
42
|
+
m = m or dict()
|
|
43
|
+
if m.get('headers') is not None:
|
|
44
|
+
self.headers = m.get('headers')
|
|
45
|
+
|
|
46
|
+
if m.get('statusCode') is not None:
|
|
47
|
+
self.status_code = m.get('statusCode')
|
|
48
|
+
|
|
49
|
+
if m.get('body') is not None:
|
|
50
|
+
temp_model = main_models.WhatsappCallResponseBody()
|
|
51
|
+
self.body = temp_model.from_map(m.get('body'))
|
|
52
|
+
|
|
53
|
+
return self
|
|
54
|
+
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# This file is auto-generated, don't edit it. Thanks.
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
from alibabacloud_cams20200606 import models as main_models
|
|
6
|
+
from darabonba.model import DaraModel
|
|
7
|
+
|
|
8
|
+
class WhatsappCallResponseBody(DaraModel):
|
|
9
|
+
def __init__(
|
|
10
|
+
self,
|
|
11
|
+
access_denied_detail: str = None,
|
|
12
|
+
code: str = None,
|
|
13
|
+
message: str = None,
|
|
14
|
+
model: main_models.WhatsappCallResponseBodyModel = None,
|
|
15
|
+
request_id: str = None,
|
|
16
|
+
success: bool = None,
|
|
17
|
+
):
|
|
18
|
+
self.access_denied_detail = access_denied_detail
|
|
19
|
+
self.code = code
|
|
20
|
+
self.message = message
|
|
21
|
+
self.model = model
|
|
22
|
+
self.request_id = request_id
|
|
23
|
+
self.success = success
|
|
24
|
+
|
|
25
|
+
def validate(self):
|
|
26
|
+
if self.model:
|
|
27
|
+
self.model.validate()
|
|
28
|
+
|
|
29
|
+
def to_map(self):
|
|
30
|
+
result = dict()
|
|
31
|
+
_map = super().to_map()
|
|
32
|
+
if _map is not None:
|
|
33
|
+
result = _map
|
|
34
|
+
if self.access_denied_detail is not None:
|
|
35
|
+
result['AccessDeniedDetail'] = self.access_denied_detail
|
|
36
|
+
|
|
37
|
+
if self.code is not None:
|
|
38
|
+
result['Code'] = self.code
|
|
39
|
+
|
|
40
|
+
if self.message is not None:
|
|
41
|
+
result['Message'] = self.message
|
|
42
|
+
|
|
43
|
+
if self.model is not None:
|
|
44
|
+
result['Model'] = self.model.to_map()
|
|
45
|
+
|
|
46
|
+
if self.request_id is not None:
|
|
47
|
+
result['RequestId'] = self.request_id
|
|
48
|
+
|
|
49
|
+
if self.success is not None:
|
|
50
|
+
result['Success'] = self.success
|
|
51
|
+
|
|
52
|
+
return result
|
|
53
|
+
|
|
54
|
+
def from_map(self, m: dict = None):
|
|
55
|
+
m = m or dict()
|
|
56
|
+
if m.get('AccessDeniedDetail') is not None:
|
|
57
|
+
self.access_denied_detail = m.get('AccessDeniedDetail')
|
|
58
|
+
|
|
59
|
+
if m.get('Code') is not None:
|
|
60
|
+
self.code = m.get('Code')
|
|
61
|
+
|
|
62
|
+
if m.get('Message') is not None:
|
|
63
|
+
self.message = m.get('Message')
|
|
64
|
+
|
|
65
|
+
if m.get('Model') is not None:
|
|
66
|
+
temp_model = main_models.WhatsappCallResponseBodyModel()
|
|
67
|
+
self.model = temp_model.from_map(m.get('Model'))
|
|
68
|
+
|
|
69
|
+
if m.get('RequestId') is not None:
|
|
70
|
+
self.request_id = m.get('RequestId')
|
|
71
|
+
|
|
72
|
+
if m.get('Success') is not None:
|
|
73
|
+
self.success = m.get('Success')
|
|
74
|
+
|
|
75
|
+
return self
|
|
76
|
+
|
|
77
|
+
class WhatsappCallResponseBodyModel(DaraModel):
|
|
78
|
+
def __init__(
|
|
79
|
+
self,
|
|
80
|
+
call_id: str = None,
|
|
81
|
+
):
|
|
82
|
+
self.call_id = call_id
|
|
83
|
+
|
|
84
|
+
def validate(self):
|
|
85
|
+
pass
|
|
86
|
+
|
|
87
|
+
def to_map(self):
|
|
88
|
+
result = dict()
|
|
89
|
+
_map = super().to_map()
|
|
90
|
+
if _map is not None:
|
|
91
|
+
result = _map
|
|
92
|
+
if self.call_id is not None:
|
|
93
|
+
result['CallId'] = self.call_id
|
|
94
|
+
|
|
95
|
+
return result
|
|
96
|
+
|
|
97
|
+
def from_map(self, m: dict = None):
|
|
98
|
+
m = m or dict()
|
|
99
|
+
if m.get('CallId') is not None:
|
|
100
|
+
self.call_id = m.get('CallId')
|
|
101
|
+
|
|
102
|
+
return self
|
|
103
|
+
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# This file is auto-generated, don't edit it. Thanks.
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
from darabonba.model import DaraModel
|
|
6
|
+
|
|
7
|
+
class WhatsappCallShrinkRequest(DaraModel):
|
|
8
|
+
def __init__(
|
|
9
|
+
self,
|
|
10
|
+
business_number: str = None,
|
|
11
|
+
call_action: str = None,
|
|
12
|
+
call_id: str = None,
|
|
13
|
+
cust_space_id: str = None,
|
|
14
|
+
owner_id: int = None,
|
|
15
|
+
resource_owner_account: str = None,
|
|
16
|
+
resource_owner_id: int = None,
|
|
17
|
+
session_shrink: str = None,
|
|
18
|
+
user_number: str = None,
|
|
19
|
+
):
|
|
20
|
+
# This parameter is required.
|
|
21
|
+
self.business_number = business_number
|
|
22
|
+
# This parameter is required.
|
|
23
|
+
self.call_action = call_action
|
|
24
|
+
self.call_id = call_id
|
|
25
|
+
# This parameter is required.
|
|
26
|
+
self.cust_space_id = cust_space_id
|
|
27
|
+
self.owner_id = owner_id
|
|
28
|
+
self.resource_owner_account = resource_owner_account
|
|
29
|
+
self.resource_owner_id = resource_owner_id
|
|
30
|
+
self.session_shrink = session_shrink
|
|
31
|
+
self.user_number = user_number
|
|
32
|
+
|
|
33
|
+
def validate(self):
|
|
34
|
+
pass
|
|
35
|
+
|
|
36
|
+
def to_map(self):
|
|
37
|
+
result = dict()
|
|
38
|
+
_map = super().to_map()
|
|
39
|
+
if _map is not None:
|
|
40
|
+
result = _map
|
|
41
|
+
if self.business_number is not None:
|
|
42
|
+
result['BusinessNumber'] = self.business_number
|
|
43
|
+
|
|
44
|
+
if self.call_action is not None:
|
|
45
|
+
result['CallAction'] = self.call_action
|
|
46
|
+
|
|
47
|
+
if self.call_id is not None:
|
|
48
|
+
result['CallId'] = self.call_id
|
|
49
|
+
|
|
50
|
+
if self.cust_space_id is not None:
|
|
51
|
+
result['CustSpaceId'] = self.cust_space_id
|
|
52
|
+
|
|
53
|
+
if self.owner_id is not None:
|
|
54
|
+
result['OwnerId'] = self.owner_id
|
|
55
|
+
|
|
56
|
+
if self.resource_owner_account is not None:
|
|
57
|
+
result['ResourceOwnerAccount'] = self.resource_owner_account
|
|
58
|
+
|
|
59
|
+
if self.resource_owner_id is not None:
|
|
60
|
+
result['ResourceOwnerId'] = self.resource_owner_id
|
|
61
|
+
|
|
62
|
+
if self.session_shrink is not None:
|
|
63
|
+
result['Session'] = self.session_shrink
|
|
64
|
+
|
|
65
|
+
if self.user_number is not None:
|
|
66
|
+
result['UserNumber'] = self.user_number
|
|
67
|
+
|
|
68
|
+
return result
|
|
69
|
+
|
|
70
|
+
def from_map(self, m: dict = None):
|
|
71
|
+
m = m or dict()
|
|
72
|
+
if m.get('BusinessNumber') is not None:
|
|
73
|
+
self.business_number = m.get('BusinessNumber')
|
|
74
|
+
|
|
75
|
+
if m.get('CallAction') is not None:
|
|
76
|
+
self.call_action = m.get('CallAction')
|
|
77
|
+
|
|
78
|
+
if m.get('CallId') is not None:
|
|
79
|
+
self.call_id = m.get('CallId')
|
|
80
|
+
|
|
81
|
+
if m.get('CustSpaceId') is not None:
|
|
82
|
+
self.cust_space_id = m.get('CustSpaceId')
|
|
83
|
+
|
|
84
|
+
if m.get('OwnerId') is not None:
|
|
85
|
+
self.owner_id = m.get('OwnerId')
|
|
86
|
+
|
|
87
|
+
if m.get('ResourceOwnerAccount') is not None:
|
|
88
|
+
self.resource_owner_account = m.get('ResourceOwnerAccount')
|
|
89
|
+
|
|
90
|
+
if m.get('ResourceOwnerId') is not None:
|
|
91
|
+
self.resource_owner_id = m.get('ResourceOwnerId')
|
|
92
|
+
|
|
93
|
+
if m.get('Session') is not None:
|
|
94
|
+
self.session_shrink = m.get('Session')
|
|
95
|
+
|
|
96
|
+
if m.get('UserNumber') is not None:
|
|
97
|
+
self.user_number = m.get('UserNumber')
|
|
98
|
+
|
|
99
|
+
return self
|
|
100
|
+
|
{alibabacloud_cams20200606-4.0.0.dist-info → alibabacloud_cams20200606-4.1.0.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: alibabacloud-cams20200606
|
|
3
|
-
Version: 4.
|
|
3
|
+
Version: 4.1.0
|
|
4
4
|
Summary: Alibaba Cloud cams (20200606) SDK Library for Python
|
|
5
5
|
Home-page: https://github.com/aliyun/alibabacloud-python-sdk
|
|
6
6
|
Author: Alibaba Cloud SDK
|
|
@@ -23,7 +23,7 @@ Classifier: Topic :: Software Development
|
|
|
23
23
|
Requires-Python: >=3.7
|
|
24
24
|
Description-Content-Type: text/markdown
|
|
25
25
|
License-File: LICENSE
|
|
26
|
-
Requires-Dist: alibabacloud-tea-openapi (<1.0.0,>=0.4.
|
|
26
|
+
Requires-Dist: alibabacloud-tea-openapi (<1.0.0,>=0.4.3)
|
|
27
27
|
Requires-Dist: darabonba-core (<2.0.0,>=1.0.0)
|
|
28
28
|
|
|
29
29
|
English | [简体中文](README-CN.md)
|
{alibabacloud_cams20200606-4.0.0.dist-info → alibabacloud_cams20200606-4.1.0.dist-info}/RECORD
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
alibabacloud_cams20200606/__init__.py,sha256=
|
|
2
|
-
alibabacloud_cams20200606/client.py,sha256=
|
|
3
|
-
alibabacloud_cams20200606/models/__init__.py,sha256=
|
|
1
|
+
alibabacloud_cams20200606/__init__.py,sha256=lxnje8P-maveQRzsNBMx8fMg2n4rtyrYtjzLXKjtYo8,21
|
|
2
|
+
alibabacloud_cams20200606/client.py,sha256=NzUsN4d_Sd-pTh4BMkZou-oiTepm17Nx1mG7UZMHmcE,670254
|
|
3
|
+
alibabacloud_cams20200606/models/__init__.py,sha256=4YbpYUA55XZUQ2xbhHYASmNjCU4Ixfob7BO0TXS_tcY,82051
|
|
4
4
|
alibabacloud_cams20200606/models/_add_address_recover_suspend_request.py,sha256=etVZSvJlnyr04aexfTI1wzJtCjmcvaX3EOZwADqWgvs,4725
|
|
5
5
|
alibabacloud_cams20200606/models/_add_address_recover_suspend_response.py,sha256=WpRtZnMxhe6MNgZWc2YOA6uhwoqhrTawm3Qg_AJbp64,1505
|
|
6
6
|
alibabacloud_cams20200606/models/_add_address_recover_suspend_response_body.py,sha256=o5YzbrC8F088aYxrq_VwG0diRAn-SjD4FudYaXBwyGA,2024
|
|
@@ -64,7 +64,7 @@ alibabacloud_cams20200606/models/_chatapp_phone_number_register_response.py,sha2
|
|
|
64
64
|
alibabacloud_cams20200606/models/_chatapp_phone_number_register_response_body.py,sha256=tRAyhQwv1uOb3qRJpMmhw2t3a8kjN8Mk25hRKZ_iJc8,2299
|
|
65
65
|
alibabacloud_cams20200606/models/_chatapp_sync_phone_number_request.py,sha256=h7ZyuRL5X8zHBEQdaGzsudwg9jLVkpTas9Dq2_AkLZU,1840
|
|
66
66
|
alibabacloud_cams20200606/models/_chatapp_sync_phone_number_response.py,sha256=1kHQWla82rOnGpu7WQUMilgWXapFMpJX9M_85AHRqkU,1499
|
|
67
|
-
alibabacloud_cams20200606/models/_chatapp_sync_phone_number_response_body.py,sha256=
|
|
67
|
+
alibabacloud_cams20200606/models/_chatapp_sync_phone_number_response_body.py,sha256=KJIcaPOO7408VSlWT7sKWq-bv1u4kk0Oyh_yVQ1Ulu0,17824
|
|
68
68
|
alibabacloud_cams20200606/models/_chatapp_verify_and_register_request.py,sha256=ih_lgrYWqfJyrDUzHJt6WxwMCarDJO3H1NJ-i8yuCos,2352
|
|
69
69
|
alibabacloud_cams20200606/models/_chatapp_verify_and_register_response.py,sha256=hfnMJR1l5umRaIQF9x3c0qjG6iwoZfTSIY3rXVSDSPo,1505
|
|
70
70
|
alibabacloud_cams20200606/models/_chatapp_verify_and_register_response_body.py,sha256=GbeDgaHdjVNNUPxs3fzvWtLeTPWCZbVINWqFcm7_G-U,2338
|
|
@@ -429,7 +429,7 @@ alibabacloud_cams20200606/models/_query_chatapp_bind_waba_response.py,sha256=YJp
|
|
|
429
429
|
alibabacloud_cams20200606/models/_query_chatapp_bind_waba_response_body.py,sha256=geg_F_SW4IqEGcgCWoiH1ivvNnghTOghINXNjHiv1A0,7112
|
|
430
430
|
alibabacloud_cams20200606/models/_query_chatapp_phone_numbers_request.py,sha256=jG07uUisysHuK7YLX_7OJVWKuzf-xoX5mgfqbOfZVdQ,2410
|
|
431
431
|
alibabacloud_cams20200606/models/_query_chatapp_phone_numbers_response.py,sha256=6brZOqVMheggMV-4304LFhVW_WuZdj8i4on2lVe1HEg,1505
|
|
432
|
-
alibabacloud_cams20200606/models/_query_chatapp_phone_numbers_response_body.py,sha256=
|
|
432
|
+
alibabacloud_cams20200606/models/_query_chatapp_phone_numbers_response_body.py,sha256=YnUWxuitPdwmm_2Ed9Z_DKgvDjc1Ok2aaNMUTGd2WL0,18312
|
|
433
433
|
alibabacloud_cams20200606/models/_query_instance_request.py,sha256=fWTBJjm13flUZwMsnJzOBnHd7SLlPrYFhtsaeUuZPeA,1717
|
|
434
434
|
alibabacloud_cams20200606/models/_query_instance_response.py,sha256=gJWwnxSSw6GtT9H7-iyzy55dSfXLvFsDIc6LSER0oUw,1472
|
|
435
435
|
alibabacloud_cams20200606/models/_query_instance_response_body.py,sha256=WUB5fGIMyWdZLUQluEcprOfQOxyzy_wgOFOEy8LpDFI,6241
|
|
@@ -541,8 +541,12 @@ alibabacloud_cams20200606/models/_update_phone_webhook_response_body.py,sha256=m
|
|
|
541
541
|
alibabacloud_cams20200606/models/_update_waba_mml_status_request.py,sha256=2v8lvxkmFcgNXYU_ChgCSe0_AO5DgvxwAZsels3EWEg,2274
|
|
542
542
|
alibabacloud_cams20200606/models/_update_waba_mml_status_response.py,sha256=KgRY_BbcWzqkMXTg66o5AAtk82Y9SmpqXnFGoCmcyis,1490
|
|
543
543
|
alibabacloud_cams20200606/models/_update_waba_mml_status_response_body.py,sha256=1AHf87g9atMgQiXLTGec5uukXzFB1I92Q4g1YdglwMs,2028
|
|
544
|
-
alibabacloud_cams20200606
|
|
545
|
-
alibabacloud_cams20200606
|
|
546
|
-
alibabacloud_cams20200606
|
|
547
|
-
alibabacloud_cams20200606
|
|
548
|
-
alibabacloud_cams20200606-4.
|
|
544
|
+
alibabacloud_cams20200606/models/_whatsapp_call_request.py,sha256=IShLD8hqhXL7mQtNOI-zyiBC3lrf-9TUQwK6i3hSC7g,4115
|
|
545
|
+
alibabacloud_cams20200606/models/_whatsapp_call_response.py,sha256=rSEDlVeoaPnc7Ugew45pagCz_Gc7ltIGOIFF-t6YTYI,1469
|
|
546
|
+
alibabacloud_cams20200606/models/_whatsapp_call_response_body.py,sha256=ORJj42FchN1v3WaiGEZW5g_6HOEBsMph0XH3pLABCJU,2814
|
|
547
|
+
alibabacloud_cams20200606/models/_whatsapp_call_shrink_request.py,sha256=9UTEQm_6iI2QEIpa1oMPkoghJ8JRqHDXJKpiJEEnu4c,3132
|
|
548
|
+
alibabacloud_cams20200606-4.1.0.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
549
|
+
alibabacloud_cams20200606-4.1.0.dist-info/METADATA,sha256=JBhU-neiJW1v5uSdPtfBpDp3I9jhPntT0qIgZ-xPVkI,2296
|
|
550
|
+
alibabacloud_cams20200606-4.1.0.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
551
|
+
alibabacloud_cams20200606-4.1.0.dist-info/top_level.txt,sha256=jI2FqyMg9rea21vgXZwGE5T0HVsOZ7bDS7m8L18ZQvw,26
|
|
552
|
+
alibabacloud_cams20200606-4.1.0.dist-info/RECORD,,
|
{alibabacloud_cams20200606-4.0.0.dist-info → alibabacloud_cams20200606-4.1.0.dist-info}/LICENSE
RENAMED
|
File without changes
|
{alibabacloud_cams20200606-4.0.0.dist-info → alibabacloud_cams20200606-4.1.0.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|