huaweicloudsdkmsgsms 3.1.160__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.
Files changed (64) hide show
  1. huaweicloudsdkmsgsms/__init__.py +0 -0
  2. huaweicloudsdkmsgsms/v2/__init__.py +60 -0
  3. huaweicloudsdkmsgsms/v2/model/__init__.py +57 -0
  4. huaweicloudsdkmsgsms/v2/model/api_template_variable.py +289 -0
  5. huaweicloudsdkmsgsms/v2/model/create_app_request.py +111 -0
  6. huaweicloudsdkmsgsms/v2/model/create_app_response.py +203 -0
  7. huaweicloudsdkmsgsms/v2/model/create_signature_request.py +111 -0
  8. huaweicloudsdkmsgsms/v2/model/create_signature_response.py +174 -0
  9. huaweicloudsdkmsgsms/v2/model/create_template_request.py +111 -0
  10. huaweicloudsdkmsgsms/v2/model/create_template_response.py +145 -0
  11. huaweicloudsdkmsgsms/v2/model/delete_signature_request.py +114 -0
  12. huaweicloudsdkmsgsms/v2/model/delete_signature_response.py +85 -0
  13. huaweicloudsdkmsgsms/v2/model/delete_template_request.py +114 -0
  14. huaweicloudsdkmsgsms/v2/model/delete_template_response.py +85 -0
  15. huaweicloudsdkmsgsms/v2/model/enable_signature_request.py +114 -0
  16. huaweicloudsdkmsgsms/v2/model/enable_signature_response.py +85 -0
  17. huaweicloudsdkmsgsms/v2/model/list_app_details_request.py +347 -0
  18. huaweicloudsdkmsgsms/v2/model/list_app_details_response.py +145 -0
  19. huaweicloudsdkmsgsms/v2/model/list_send_country_details_request.py +144 -0
  20. huaweicloudsdkmsgsms/v2/model/list_send_country_details_response.py +112 -0
  21. huaweicloudsdkmsgsms/v2/model/list_signature_details_request.py +434 -0
  22. huaweicloudsdkmsgsms/v2/model/list_signature_details_response.py +145 -0
  23. huaweicloudsdkmsgsms/v2/model/list_template_details_request.py +521 -0
  24. huaweicloudsdkmsgsms/v2/model/list_template_details_response.py +145 -0
  25. huaweicloudsdkmsgsms/v2/model/list_template_varilable_details_request.py +114 -0
  26. huaweicloudsdkmsgsms/v2/model/list_template_varilable_details_response.py +145 -0
  27. huaweicloudsdkmsgsms/v2/model/show_app_count_request.py +114 -0
  28. huaweicloudsdkmsgsms/v2/model/show_app_count_response.py +145 -0
  29. huaweicloudsdkmsgsms/v2/model/show_app_request.py +114 -0
  30. huaweicloudsdkmsgsms/v2/model/show_app_response.py +721 -0
  31. huaweicloudsdkmsgsms/v2/model/show_signature_file_request.py +114 -0
  32. huaweicloudsdkmsgsms/v2/model/show_signature_file_response.py +348 -0
  33. huaweicloudsdkmsgsms/v2/model/show_signature_request.py +114 -0
  34. huaweicloudsdkmsgsms/v2/model/show_signature_response.py +837 -0
  35. huaweicloudsdkmsgsms/v2/model/show_template_request.py +114 -0
  36. huaweicloudsdkmsgsms/v2/model/show_template_response.py +953 -0
  37. huaweicloudsdkmsgsms/v2/model/sms_app_add_req.py +287 -0
  38. huaweicloudsdkmsgsms/v2/model/sms_app_query_resp.py +720 -0
  39. huaweicloudsdkmsgsms/v2/model/sms_app_update_req.py +258 -0
  40. huaweicloudsdkmsgsms/v2/model/sms_country_resp.py +173 -0
  41. huaweicloudsdkmsgsms/v2/model/sms_signature_req.py +371 -0
  42. huaweicloudsdkmsgsms/v2/model/sms_signature_resp.py +836 -0
  43. huaweicloudsdkmsgsms/v2/model/sms_template_req.py +429 -0
  44. huaweicloudsdkmsgsms/v2/model/sms_template_resp.py +952 -0
  45. huaweicloudsdkmsgsms/v2/model/sms_template_variable_attr_req.py +171 -0
  46. huaweicloudsdkmsgsms/v2/model/tenant_basic.py +173 -0
  47. huaweicloudsdkmsgsms/v2/model/update_app_request.py +139 -0
  48. huaweicloudsdkmsgsms/v2/model/update_app_response.py +174 -0
  49. huaweicloudsdkmsgsms/v2/model/update_signature_request.py +139 -0
  50. huaweicloudsdkmsgsms/v2/model/update_signature_response.py +174 -0
  51. huaweicloudsdkmsgsms/v2/model/update_template_request.py +139 -0
  52. huaweicloudsdkmsgsms/v2/model/update_template_response.py +145 -0
  53. huaweicloudsdkmsgsms/v2/model/upload_signature_file_request.py +140 -0
  54. huaweicloudsdkmsgsms/v2/model/upload_signature_file_request_body.py +114 -0
  55. huaweicloudsdkmsgsms/v2/model/upload_signature_file_response.py +116 -0
  56. huaweicloudsdkmsgsms/v2/msgsms_async_client.py +1461 -0
  57. huaweicloudsdkmsgsms/v2/msgsms_client.py +1458 -0
  58. huaweicloudsdkmsgsms/v2/region/__init__.py +0 -0
  59. huaweicloudsdkmsgsms/v2/region/msgsms_region.py +34 -0
  60. huaweicloudsdkmsgsms-3.1.160.dist-info/LICENSE +13 -0
  61. huaweicloudsdkmsgsms-3.1.160.dist-info/METADATA +26 -0
  62. huaweicloudsdkmsgsms-3.1.160.dist-info/RECORD +64 -0
  63. huaweicloudsdkmsgsms-3.1.160.dist-info/WHEEL +5 -0
  64. huaweicloudsdkmsgsms-3.1.160.dist-info/top_level.txt +1 -0
@@ -0,0 +1,836 @@
1
+ # coding: utf-8
2
+
3
+ import six
4
+
5
+ from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
6
+
7
+
8
+ class SmsSignatureResp:
9
+
10
+ """
11
+ Attributes:
12
+ openapi_types (dict): The key is attribute name
13
+ and the value is attribute type.
14
+ attribute_map (dict): The key is attribute name
15
+ and the value is json key in definition.
16
+ """
17
+ sensitive_list = []
18
+
19
+ openapi_types = {
20
+ 'id': 'str',
21
+ 'create_time': 'str',
22
+ 'update_time': 'str',
23
+ 'customer_id': 'str',
24
+ 'tenant': 'TenantBasic',
25
+ 'signature_name': 'str',
26
+ 'signature_id': 'str',
27
+ 'signature_type': 'str',
28
+ 'app_name': 'str',
29
+ 'apply_desc': 'str',
30
+ 'channel_num': 'str',
31
+ 'review_desc': 'str',
32
+ 'file_id': 'str',
33
+ 'status': 'str',
34
+ 'site': 'str',
35
+ 'signature_source': 'int',
36
+ 'is_involved_third': 'str',
37
+ 'power_attorney_file_id': 'str',
38
+ 'urge_status': 'str',
39
+ 'urge_time': 'str',
40
+ 'urge_desc': 'str',
41
+ 'app_key': 'str',
42
+ 'source_title_content': 'str',
43
+ 'signature_usage': 'str',
44
+ 'qualification_id': 'str',
45
+ 'qualification_name': 'str'
46
+ }
47
+
48
+ attribute_map = {
49
+ 'id': 'id',
50
+ 'create_time': 'create_time',
51
+ 'update_time': 'update_time',
52
+ 'customer_id': 'customer_id',
53
+ 'tenant': 'tenant',
54
+ 'signature_name': 'signature_name',
55
+ 'signature_id': 'signature_id',
56
+ 'signature_type': 'signature_type',
57
+ 'app_name': 'app_name',
58
+ 'apply_desc': 'apply_desc',
59
+ 'channel_num': 'channel_num',
60
+ 'review_desc': 'review_desc',
61
+ 'file_id': 'file_id',
62
+ 'status': 'status',
63
+ 'site': 'site',
64
+ 'signature_source': 'signature_source',
65
+ 'is_involved_third': 'is_involved_third',
66
+ 'power_attorney_file_id': 'power_attorney_file_id',
67
+ 'urge_status': 'urge_status',
68
+ 'urge_time': 'urge_time',
69
+ 'urge_desc': 'urge_desc',
70
+ 'app_key': 'app_key',
71
+ 'source_title_content': 'source_title_content',
72
+ 'signature_usage': 'signature_usage',
73
+ 'qualification_id': 'qualification_id',
74
+ 'qualification_name': 'qualification_name'
75
+ }
76
+
77
+ def __init__(self, id=None, create_time=None, update_time=None, customer_id=None, tenant=None, signature_name=None, signature_id=None, signature_type=None, app_name=None, apply_desc=None, channel_num=None, review_desc=None, file_id=None, status=None, site=None, signature_source=None, is_involved_third=None, power_attorney_file_id=None, urge_status=None, urge_time=None, urge_desc=None, app_key=None, source_title_content=None, signature_usage=None, qualification_id=None, qualification_name=None):
78
+ r"""SmsSignatureResp
79
+
80
+ The model defined in huaweicloud sdk
81
+
82
+ :param id: 签名主键id,用于获取、修改、删除、申请激活签名的唯一标识
83
+ :type id: str
84
+ :param create_time: 创建时间[yyyy-MM-dd HH:mm:ss]
85
+ :type create_time: str
86
+ :param update_time: 更新时间[yyyy-MM-dd HH:mm:ss]
87
+ :type update_time: str
88
+ :param customer_id: 租户customer id
89
+ :type customer_id: str
90
+ :param tenant:
91
+ :type tenant: :class:`huaweicloudsdkmsgsms.v2.TenantBasic`
92
+ :param signature_name: 签名名称
93
+ :type signature_name: str
94
+ :param signature_id: 签名id
95
+ :type signature_id: str
96
+ :param signature_type: 签名类型
97
+ :type signature_type: str
98
+ :param app_name: 应用名称
99
+ :type app_name: str
100
+ :param apply_desc: 申请描述
101
+ :type apply_desc: str
102
+ :param channel_num: 国内短信通道号,仅当签名审核成功,运营人员配置完成后返回。
103
+ :type channel_num: str
104
+ :param review_desc: 审核意见
105
+ :type review_desc: str
106
+ :param file_id: 文件id
107
+ :type file_id: str
108
+ :param status: 签名状态
109
+ :type status: str
110
+ :param site: 站点
111
+ :type site: str
112
+ :param signature_source: 签名来源
113
+ :type signature_source: int
114
+ :param is_involved_third: 是否涉及第三方权益
115
+ :type is_involved_third: str
116
+ :param power_attorney_file_id: 授权委托书文件ID
117
+ :type power_attorney_file_id: str
118
+ :param urge_status: 催审状态
119
+ :type urge_status: str
120
+ :param urge_time: 催审时间
121
+ :type urge_time: str
122
+ :param urge_desc: 催审描述
123
+ :type urge_desc: str
124
+ :param app_key: 应用key
125
+ :type app_key: str
126
+ :param source_title_content: 标题内容
127
+ :type source_title_content: str
128
+ :param signature_usage: 签名用途
129
+ :type signature_usage: str
130
+ :param qualification_id: 资质ID
131
+ :type qualification_id: str
132
+ :param qualification_name: 资质名
133
+ :type qualification_name: str
134
+ """
135
+
136
+
137
+
138
+ self._id = None
139
+ self._create_time = None
140
+ self._update_time = None
141
+ self._customer_id = None
142
+ self._tenant = None
143
+ self._signature_name = None
144
+ self._signature_id = None
145
+ self._signature_type = None
146
+ self._app_name = None
147
+ self._apply_desc = None
148
+ self._channel_num = None
149
+ self._review_desc = None
150
+ self._file_id = None
151
+ self._status = None
152
+ self._site = None
153
+ self._signature_source = None
154
+ self._is_involved_third = None
155
+ self._power_attorney_file_id = None
156
+ self._urge_status = None
157
+ self._urge_time = None
158
+ self._urge_desc = None
159
+ self._app_key = None
160
+ self._source_title_content = None
161
+ self._signature_usage = None
162
+ self._qualification_id = None
163
+ self._qualification_name = None
164
+ self.discriminator = None
165
+
166
+ if id is not None:
167
+ self.id = id
168
+ if create_time is not None:
169
+ self.create_time = create_time
170
+ if update_time is not None:
171
+ self.update_time = update_time
172
+ if customer_id is not None:
173
+ self.customer_id = customer_id
174
+ if tenant is not None:
175
+ self.tenant = tenant
176
+ if signature_name is not None:
177
+ self.signature_name = signature_name
178
+ if signature_id is not None:
179
+ self.signature_id = signature_id
180
+ if signature_type is not None:
181
+ self.signature_type = signature_type
182
+ if app_name is not None:
183
+ self.app_name = app_name
184
+ if apply_desc is not None:
185
+ self.apply_desc = apply_desc
186
+ if channel_num is not None:
187
+ self.channel_num = channel_num
188
+ if review_desc is not None:
189
+ self.review_desc = review_desc
190
+ if file_id is not None:
191
+ self.file_id = file_id
192
+ if status is not None:
193
+ self.status = status
194
+ if site is not None:
195
+ self.site = site
196
+ if signature_source is not None:
197
+ self.signature_source = signature_source
198
+ if is_involved_third is not None:
199
+ self.is_involved_third = is_involved_third
200
+ if power_attorney_file_id is not None:
201
+ self.power_attorney_file_id = power_attorney_file_id
202
+ if urge_status is not None:
203
+ self.urge_status = urge_status
204
+ if urge_time is not None:
205
+ self.urge_time = urge_time
206
+ if urge_desc is not None:
207
+ self.urge_desc = urge_desc
208
+ if app_key is not None:
209
+ self.app_key = app_key
210
+ if source_title_content is not None:
211
+ self.source_title_content = source_title_content
212
+ if signature_usage is not None:
213
+ self.signature_usage = signature_usage
214
+ if qualification_id is not None:
215
+ self.qualification_id = qualification_id
216
+ if qualification_name is not None:
217
+ self.qualification_name = qualification_name
218
+
219
+ @property
220
+ def id(self):
221
+ r"""Gets the id of this SmsSignatureResp.
222
+
223
+ 签名主键id,用于获取、修改、删除、申请激活签名的唯一标识
224
+
225
+ :return: The id of this SmsSignatureResp.
226
+ :rtype: str
227
+ """
228
+ return self._id
229
+
230
+ @id.setter
231
+ def id(self, id):
232
+ r"""Sets the id of this SmsSignatureResp.
233
+
234
+ 签名主键id,用于获取、修改、删除、申请激活签名的唯一标识
235
+
236
+ :param id: The id of this SmsSignatureResp.
237
+ :type id: str
238
+ """
239
+ self._id = id
240
+
241
+ @property
242
+ def create_time(self):
243
+ r"""Gets the create_time of this SmsSignatureResp.
244
+
245
+ 创建时间[yyyy-MM-dd HH:mm:ss]
246
+
247
+ :return: The create_time of this SmsSignatureResp.
248
+ :rtype: str
249
+ """
250
+ return self._create_time
251
+
252
+ @create_time.setter
253
+ def create_time(self, create_time):
254
+ r"""Sets the create_time of this SmsSignatureResp.
255
+
256
+ 创建时间[yyyy-MM-dd HH:mm:ss]
257
+
258
+ :param create_time: The create_time of this SmsSignatureResp.
259
+ :type create_time: str
260
+ """
261
+ self._create_time = create_time
262
+
263
+ @property
264
+ def update_time(self):
265
+ r"""Gets the update_time of this SmsSignatureResp.
266
+
267
+ 更新时间[yyyy-MM-dd HH:mm:ss]
268
+
269
+ :return: The update_time of this SmsSignatureResp.
270
+ :rtype: str
271
+ """
272
+ return self._update_time
273
+
274
+ @update_time.setter
275
+ def update_time(self, update_time):
276
+ r"""Sets the update_time of this SmsSignatureResp.
277
+
278
+ 更新时间[yyyy-MM-dd HH:mm:ss]
279
+
280
+ :param update_time: The update_time of this SmsSignatureResp.
281
+ :type update_time: str
282
+ """
283
+ self._update_time = update_time
284
+
285
+ @property
286
+ def customer_id(self):
287
+ r"""Gets the customer_id of this SmsSignatureResp.
288
+
289
+ 租户customer id
290
+
291
+ :return: The customer_id of this SmsSignatureResp.
292
+ :rtype: str
293
+ """
294
+ return self._customer_id
295
+
296
+ @customer_id.setter
297
+ def customer_id(self, customer_id):
298
+ r"""Sets the customer_id of this SmsSignatureResp.
299
+
300
+ 租户customer id
301
+
302
+ :param customer_id: The customer_id of this SmsSignatureResp.
303
+ :type customer_id: str
304
+ """
305
+ self._customer_id = customer_id
306
+
307
+ @property
308
+ def tenant(self):
309
+ r"""Gets the tenant of this SmsSignatureResp.
310
+
311
+ :return: The tenant of this SmsSignatureResp.
312
+ :rtype: :class:`huaweicloudsdkmsgsms.v2.TenantBasic`
313
+ """
314
+ return self._tenant
315
+
316
+ @tenant.setter
317
+ def tenant(self, tenant):
318
+ r"""Sets the tenant of this SmsSignatureResp.
319
+
320
+ :param tenant: The tenant of this SmsSignatureResp.
321
+ :type tenant: :class:`huaweicloudsdkmsgsms.v2.TenantBasic`
322
+ """
323
+ self._tenant = tenant
324
+
325
+ @property
326
+ def signature_name(self):
327
+ r"""Gets the signature_name of this SmsSignatureResp.
328
+
329
+ 签名名称
330
+
331
+ :return: The signature_name of this SmsSignatureResp.
332
+ :rtype: str
333
+ """
334
+ return self._signature_name
335
+
336
+ @signature_name.setter
337
+ def signature_name(self, signature_name):
338
+ r"""Sets the signature_name of this SmsSignatureResp.
339
+
340
+ 签名名称
341
+
342
+ :param signature_name: The signature_name of this SmsSignatureResp.
343
+ :type signature_name: str
344
+ """
345
+ self._signature_name = signature_name
346
+
347
+ @property
348
+ def signature_id(self):
349
+ r"""Gets the signature_id of this SmsSignatureResp.
350
+
351
+ 签名id
352
+
353
+ :return: The signature_id of this SmsSignatureResp.
354
+ :rtype: str
355
+ """
356
+ return self._signature_id
357
+
358
+ @signature_id.setter
359
+ def signature_id(self, signature_id):
360
+ r"""Sets the signature_id of this SmsSignatureResp.
361
+
362
+ 签名id
363
+
364
+ :param signature_id: The signature_id of this SmsSignatureResp.
365
+ :type signature_id: str
366
+ """
367
+ self._signature_id = signature_id
368
+
369
+ @property
370
+ def signature_type(self):
371
+ r"""Gets the signature_type of this SmsSignatureResp.
372
+
373
+ 签名类型
374
+
375
+ :return: The signature_type of this SmsSignatureResp.
376
+ :rtype: str
377
+ """
378
+ return self._signature_type
379
+
380
+ @signature_type.setter
381
+ def signature_type(self, signature_type):
382
+ r"""Sets the signature_type of this SmsSignatureResp.
383
+
384
+ 签名类型
385
+
386
+ :param signature_type: The signature_type of this SmsSignatureResp.
387
+ :type signature_type: str
388
+ """
389
+ self._signature_type = signature_type
390
+
391
+ @property
392
+ def app_name(self):
393
+ r"""Gets the app_name of this SmsSignatureResp.
394
+
395
+ 应用名称
396
+
397
+ :return: The app_name of this SmsSignatureResp.
398
+ :rtype: str
399
+ """
400
+ return self._app_name
401
+
402
+ @app_name.setter
403
+ def app_name(self, app_name):
404
+ r"""Sets the app_name of this SmsSignatureResp.
405
+
406
+ 应用名称
407
+
408
+ :param app_name: The app_name of this SmsSignatureResp.
409
+ :type app_name: str
410
+ """
411
+ self._app_name = app_name
412
+
413
+ @property
414
+ def apply_desc(self):
415
+ r"""Gets the apply_desc of this SmsSignatureResp.
416
+
417
+ 申请描述
418
+
419
+ :return: The apply_desc of this SmsSignatureResp.
420
+ :rtype: str
421
+ """
422
+ return self._apply_desc
423
+
424
+ @apply_desc.setter
425
+ def apply_desc(self, apply_desc):
426
+ r"""Sets the apply_desc of this SmsSignatureResp.
427
+
428
+ 申请描述
429
+
430
+ :param apply_desc: The apply_desc of this SmsSignatureResp.
431
+ :type apply_desc: str
432
+ """
433
+ self._apply_desc = apply_desc
434
+
435
+ @property
436
+ def channel_num(self):
437
+ r"""Gets the channel_num of this SmsSignatureResp.
438
+
439
+ 国内短信通道号,仅当签名审核成功,运营人员配置完成后返回。
440
+
441
+ :return: The channel_num of this SmsSignatureResp.
442
+ :rtype: str
443
+ """
444
+ return self._channel_num
445
+
446
+ @channel_num.setter
447
+ def channel_num(self, channel_num):
448
+ r"""Sets the channel_num of this SmsSignatureResp.
449
+
450
+ 国内短信通道号,仅当签名审核成功,运营人员配置完成后返回。
451
+
452
+ :param channel_num: The channel_num of this SmsSignatureResp.
453
+ :type channel_num: str
454
+ """
455
+ self._channel_num = channel_num
456
+
457
+ @property
458
+ def review_desc(self):
459
+ r"""Gets the review_desc of this SmsSignatureResp.
460
+
461
+ 审核意见
462
+
463
+ :return: The review_desc of this SmsSignatureResp.
464
+ :rtype: str
465
+ """
466
+ return self._review_desc
467
+
468
+ @review_desc.setter
469
+ def review_desc(self, review_desc):
470
+ r"""Sets the review_desc of this SmsSignatureResp.
471
+
472
+ 审核意见
473
+
474
+ :param review_desc: The review_desc of this SmsSignatureResp.
475
+ :type review_desc: str
476
+ """
477
+ self._review_desc = review_desc
478
+
479
+ @property
480
+ def file_id(self):
481
+ r"""Gets the file_id of this SmsSignatureResp.
482
+
483
+ 文件id
484
+
485
+ :return: The file_id of this SmsSignatureResp.
486
+ :rtype: str
487
+ """
488
+ return self._file_id
489
+
490
+ @file_id.setter
491
+ def file_id(self, file_id):
492
+ r"""Sets the file_id of this SmsSignatureResp.
493
+
494
+ 文件id
495
+
496
+ :param file_id: The file_id of this SmsSignatureResp.
497
+ :type file_id: str
498
+ """
499
+ self._file_id = file_id
500
+
501
+ @property
502
+ def status(self):
503
+ r"""Gets the status of this SmsSignatureResp.
504
+
505
+ 签名状态
506
+
507
+ :return: The status of this SmsSignatureResp.
508
+ :rtype: str
509
+ """
510
+ return self._status
511
+
512
+ @status.setter
513
+ def status(self, status):
514
+ r"""Sets the status of this SmsSignatureResp.
515
+
516
+ 签名状态
517
+
518
+ :param status: The status of this SmsSignatureResp.
519
+ :type status: str
520
+ """
521
+ self._status = status
522
+
523
+ @property
524
+ def site(self):
525
+ r"""Gets the site of this SmsSignatureResp.
526
+
527
+ 站点
528
+
529
+ :return: The site of this SmsSignatureResp.
530
+ :rtype: str
531
+ """
532
+ return self._site
533
+
534
+ @site.setter
535
+ def site(self, site):
536
+ r"""Sets the site of this SmsSignatureResp.
537
+
538
+ 站点
539
+
540
+ :param site: The site of this SmsSignatureResp.
541
+ :type site: str
542
+ """
543
+ self._site = site
544
+
545
+ @property
546
+ def signature_source(self):
547
+ r"""Gets the signature_source of this SmsSignatureResp.
548
+
549
+ 签名来源
550
+
551
+ :return: The signature_source of this SmsSignatureResp.
552
+ :rtype: int
553
+ """
554
+ return self._signature_source
555
+
556
+ @signature_source.setter
557
+ def signature_source(self, signature_source):
558
+ r"""Sets the signature_source of this SmsSignatureResp.
559
+
560
+ 签名来源
561
+
562
+ :param signature_source: The signature_source of this SmsSignatureResp.
563
+ :type signature_source: int
564
+ """
565
+ self._signature_source = signature_source
566
+
567
+ @property
568
+ def is_involved_third(self):
569
+ r"""Gets the is_involved_third of this SmsSignatureResp.
570
+
571
+ 是否涉及第三方权益
572
+
573
+ :return: The is_involved_third of this SmsSignatureResp.
574
+ :rtype: str
575
+ """
576
+ return self._is_involved_third
577
+
578
+ @is_involved_third.setter
579
+ def is_involved_third(self, is_involved_third):
580
+ r"""Sets the is_involved_third of this SmsSignatureResp.
581
+
582
+ 是否涉及第三方权益
583
+
584
+ :param is_involved_third: The is_involved_third of this SmsSignatureResp.
585
+ :type is_involved_third: str
586
+ """
587
+ self._is_involved_third = is_involved_third
588
+
589
+ @property
590
+ def power_attorney_file_id(self):
591
+ r"""Gets the power_attorney_file_id of this SmsSignatureResp.
592
+
593
+ 授权委托书文件ID
594
+
595
+ :return: The power_attorney_file_id of this SmsSignatureResp.
596
+ :rtype: str
597
+ """
598
+ return self._power_attorney_file_id
599
+
600
+ @power_attorney_file_id.setter
601
+ def power_attorney_file_id(self, power_attorney_file_id):
602
+ r"""Sets the power_attorney_file_id of this SmsSignatureResp.
603
+
604
+ 授权委托书文件ID
605
+
606
+ :param power_attorney_file_id: The power_attorney_file_id of this SmsSignatureResp.
607
+ :type power_attorney_file_id: str
608
+ """
609
+ self._power_attorney_file_id = power_attorney_file_id
610
+
611
+ @property
612
+ def urge_status(self):
613
+ r"""Gets the urge_status of this SmsSignatureResp.
614
+
615
+ 催审状态
616
+
617
+ :return: The urge_status of this SmsSignatureResp.
618
+ :rtype: str
619
+ """
620
+ return self._urge_status
621
+
622
+ @urge_status.setter
623
+ def urge_status(self, urge_status):
624
+ r"""Sets the urge_status of this SmsSignatureResp.
625
+
626
+ 催审状态
627
+
628
+ :param urge_status: The urge_status of this SmsSignatureResp.
629
+ :type urge_status: str
630
+ """
631
+ self._urge_status = urge_status
632
+
633
+ @property
634
+ def urge_time(self):
635
+ r"""Gets the urge_time of this SmsSignatureResp.
636
+
637
+ 催审时间
638
+
639
+ :return: The urge_time of this SmsSignatureResp.
640
+ :rtype: str
641
+ """
642
+ return self._urge_time
643
+
644
+ @urge_time.setter
645
+ def urge_time(self, urge_time):
646
+ r"""Sets the urge_time of this SmsSignatureResp.
647
+
648
+ 催审时间
649
+
650
+ :param urge_time: The urge_time of this SmsSignatureResp.
651
+ :type urge_time: str
652
+ """
653
+ self._urge_time = urge_time
654
+
655
+ @property
656
+ def urge_desc(self):
657
+ r"""Gets the urge_desc of this SmsSignatureResp.
658
+
659
+ 催审描述
660
+
661
+ :return: The urge_desc of this SmsSignatureResp.
662
+ :rtype: str
663
+ """
664
+ return self._urge_desc
665
+
666
+ @urge_desc.setter
667
+ def urge_desc(self, urge_desc):
668
+ r"""Sets the urge_desc of this SmsSignatureResp.
669
+
670
+ 催审描述
671
+
672
+ :param urge_desc: The urge_desc of this SmsSignatureResp.
673
+ :type urge_desc: str
674
+ """
675
+ self._urge_desc = urge_desc
676
+
677
+ @property
678
+ def app_key(self):
679
+ r"""Gets the app_key of this SmsSignatureResp.
680
+
681
+ 应用key
682
+
683
+ :return: The app_key of this SmsSignatureResp.
684
+ :rtype: str
685
+ """
686
+ return self._app_key
687
+
688
+ @app_key.setter
689
+ def app_key(self, app_key):
690
+ r"""Sets the app_key of this SmsSignatureResp.
691
+
692
+ 应用key
693
+
694
+ :param app_key: The app_key of this SmsSignatureResp.
695
+ :type app_key: str
696
+ """
697
+ self._app_key = app_key
698
+
699
+ @property
700
+ def source_title_content(self):
701
+ r"""Gets the source_title_content of this SmsSignatureResp.
702
+
703
+ 标题内容
704
+
705
+ :return: The source_title_content of this SmsSignatureResp.
706
+ :rtype: str
707
+ """
708
+ return self._source_title_content
709
+
710
+ @source_title_content.setter
711
+ def source_title_content(self, source_title_content):
712
+ r"""Sets the source_title_content of this SmsSignatureResp.
713
+
714
+ 标题内容
715
+
716
+ :param source_title_content: The source_title_content of this SmsSignatureResp.
717
+ :type source_title_content: str
718
+ """
719
+ self._source_title_content = source_title_content
720
+
721
+ @property
722
+ def signature_usage(self):
723
+ r"""Gets the signature_usage of this SmsSignatureResp.
724
+
725
+ 签名用途
726
+
727
+ :return: The signature_usage of this SmsSignatureResp.
728
+ :rtype: str
729
+ """
730
+ return self._signature_usage
731
+
732
+ @signature_usage.setter
733
+ def signature_usage(self, signature_usage):
734
+ r"""Sets the signature_usage of this SmsSignatureResp.
735
+
736
+ 签名用途
737
+
738
+ :param signature_usage: The signature_usage of this SmsSignatureResp.
739
+ :type signature_usage: str
740
+ """
741
+ self._signature_usage = signature_usage
742
+
743
+ @property
744
+ def qualification_id(self):
745
+ r"""Gets the qualification_id of this SmsSignatureResp.
746
+
747
+ 资质ID
748
+
749
+ :return: The qualification_id of this SmsSignatureResp.
750
+ :rtype: str
751
+ """
752
+ return self._qualification_id
753
+
754
+ @qualification_id.setter
755
+ def qualification_id(self, qualification_id):
756
+ r"""Sets the qualification_id of this SmsSignatureResp.
757
+
758
+ 资质ID
759
+
760
+ :param qualification_id: The qualification_id of this SmsSignatureResp.
761
+ :type qualification_id: str
762
+ """
763
+ self._qualification_id = qualification_id
764
+
765
+ @property
766
+ def qualification_name(self):
767
+ r"""Gets the qualification_name of this SmsSignatureResp.
768
+
769
+ 资质名
770
+
771
+ :return: The qualification_name of this SmsSignatureResp.
772
+ :rtype: str
773
+ """
774
+ return self._qualification_name
775
+
776
+ @qualification_name.setter
777
+ def qualification_name(self, qualification_name):
778
+ r"""Sets the qualification_name of this SmsSignatureResp.
779
+
780
+ 资质名
781
+
782
+ :param qualification_name: The qualification_name of this SmsSignatureResp.
783
+ :type qualification_name: str
784
+ """
785
+ self._qualification_name = qualification_name
786
+
787
+ def to_dict(self):
788
+ """Returns the model properties as a dict"""
789
+ result = {}
790
+
791
+ for attr, _ in six.iteritems(self.openapi_types):
792
+ value = getattr(self, attr)
793
+ if isinstance(value, list):
794
+ result[attr] = list(map(
795
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
796
+ value
797
+ ))
798
+ elif hasattr(value, "to_dict"):
799
+ result[attr] = value.to_dict()
800
+ elif isinstance(value, dict):
801
+ result[attr] = dict(map(
802
+ lambda item: (item[0], item[1].to_dict())
803
+ if hasattr(item[1], "to_dict") else item,
804
+ value.items()
805
+ ))
806
+ else:
807
+ if attr in self.sensitive_list:
808
+ result[attr] = "****"
809
+ else:
810
+ result[attr] = value
811
+
812
+ return result
813
+
814
+ def to_str(self):
815
+ """Returns the string representation of the model"""
816
+ import simplejson as json
817
+ if six.PY2:
818
+ import sys
819
+ reload(sys)
820
+ sys.setdefaultencoding("utf-8")
821
+ return json.dumps(sanitize_for_serialization(self), ensure_ascii=False)
822
+
823
+ def __repr__(self):
824
+ """For `print`"""
825
+ return self.to_str()
826
+
827
+ def __eq__(self, other):
828
+ """Returns true if both objects are equal"""
829
+ if not isinstance(other, SmsSignatureResp):
830
+ return False
831
+
832
+ return self.__dict__ == other.__dict__
833
+
834
+ def __ne__(self, other):
835
+ """Returns true if both objects are not equal"""
836
+ return not self == other