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