tccli 3.0.990.1__py2.py3-none-any.whl → 3.0.992.1__py2.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 (48) hide show
  1. tccli/__init__.py +1 -1
  2. tccli/examples/car/v20220110/DestroySession.md +1 -1
  3. tccli/examples/cls/v20201016/CheckFunction.md +25 -0
  4. tccli/examples/ess/v20201111/DescribeBillUsageDetail.md +108 -0
  5. tccli/examples/essbasic/v20210526/ChannelCreatePreparedPersonalEsign.md +92 -0
  6. tccli/examples/essbasic/v20210526/ChannelCreateReleaseFlow.md +94 -19
  7. tccli/examples/essbasic/v20210526/ChannelCreateSealPolicy.md +88 -0
  8. tccli/examples/essbasic/v20210526/ChannelDescribeEmployees.md +85 -45
  9. tccli/examples/essbasic/v20210526/DescribeBillUsageDetail.md +69 -0
  10. tccli/examples/essbasic/v20210526/SyncProxyOrganization.md +9 -9
  11. tccli/examples/mna/v20210119/GetNetMonitor.md +228 -0
  12. tccli/examples/ocr/v20181119/VatInvoiceVerifyNew.md +4 -0
  13. tccli/examples/tdmq/v20200217/DescribeRocketMQCluster.md +4 -4
  14. tccli/examples/teo/v20220901/BindSharedCNAME.md +48 -0
  15. tccli/examples/teo/v20220901/CreateSharedCNAME.md +4 -4
  16. tccli/examples/teo/v20220901/DeleteSharedCNAME.md +21 -0
  17. tccli/examples/waf/v20180125/DescribeCCRuleList.md +16 -2
  18. tccli/examples/waf/v20180125/DescribeModuleStatus.md +9 -1
  19. tccli/examples/waf/v20180125/ModifyModuleStatus.md +9 -1
  20. tccli/services/aiart/v20221229/api.json +2 -2
  21. tccli/services/car/v20220110/api.json +2 -2
  22. tccli/services/car/v20220110/examples.json +1 -1
  23. tccli/services/clb/v20180317/api.json +1 -1
  24. tccli/services/cls/cls_client.py +53 -0
  25. tccli/services/cls/v20201016/api.json +72 -0
  26. tccli/services/cls/v20201016/examples.json +8 -0
  27. tccli/services/ess/ess_client.py +53 -0
  28. tccli/services/ess/v20201111/api.json +228 -3
  29. tccli/services/ess/v20201111/examples.json +20 -0
  30. tccli/services/essbasic/v20210526/api.json +38 -29
  31. tccli/services/essbasic/v20210526/examples.json +51 -15
  32. tccli/services/mna/mna_client.py +53 -0
  33. tccli/services/mna/v20210119/api.json +142 -0
  34. tccli/services/mna/v20210119/examples.json +8 -0
  35. tccli/services/ocr/v20181119/api.json +65 -25
  36. tccli/services/ocr/v20181119/examples.json +1 -1
  37. tccli/services/tdmq/v20200217/api.json +107 -38
  38. tccli/services/tdmq/v20200217/examples.json +3 -3
  39. tccli/services/teo/teo_client.py +114 -8
  40. tccli/services/teo/v20220901/api.json +127 -4
  41. tccli/services/teo/v20220901/examples.json +26 -4
  42. tccli/services/waf/v20180125/api.json +194 -5
  43. tccli/services/waf/v20180125/examples.json +5 -5
  44. {tccli-3.0.990.1.dist-info → tccli-3.0.992.1.dist-info}/METADATA +2 -2
  45. {tccli-3.0.990.1.dist-info → tccli-3.0.992.1.dist-info}/RECORD +48 -42
  46. {tccli-3.0.990.1.dist-info → tccli-3.0.992.1.dist-info}/WHEEL +0 -0
  47. {tccli-3.0.990.1.dist-info → tccli-3.0.992.1.dist-info}/entry_points.txt +0 -0
  48. {tccli-3.0.990.1.dist-info → tccli-3.0.992.1.dist-info}/license_files/LICENSE +0 -0
@@ -70,6 +70,13 @@
70
70
  "output": "GetMultiFlowStatisticResponse",
71
71
  "status": "online"
72
72
  },
73
+ "GetNetMonitor": {
74
+ "document": "获取单设备的实时流量统计指标",
75
+ "input": "GetNetMonitorRequest",
76
+ "name": "获取流量监控信息",
77
+ "output": "GetNetMonitorResponse",
78
+ "status": "online"
79
+ },
73
80
  "GetPublicKey": {
74
81
  "document": "获取公钥用于验签",
75
82
  "input": "GetPublicKeyRequest",
@@ -1260,6 +1267,69 @@
1260
1267
  ],
1261
1268
  "type": "object"
1262
1269
  },
1270
+ "GetNetMonitorRequest": {
1271
+ "document": "GetNetMonitor请求参数结构体",
1272
+ "members": [
1273
+ {
1274
+ "disabled": false,
1275
+ "document": "设备id",
1276
+ "example": "\"mna-xxx\"",
1277
+ "member": "string",
1278
+ "name": "DeviceId",
1279
+ "required": true,
1280
+ "type": "string"
1281
+ },
1282
+ {
1283
+ "disabled": false,
1284
+ "document": "开始时间",
1285
+ "example": "1662622200",
1286
+ "member": "int64",
1287
+ "name": "BeginTime",
1288
+ "required": true,
1289
+ "type": "int"
1290
+ },
1291
+ {
1292
+ "disabled": false,
1293
+ "document": "结束时间",
1294
+ "example": "1662624800",
1295
+ "member": "int64",
1296
+ "name": "EndTime",
1297
+ "required": true,
1298
+ "type": "int"
1299
+ },
1300
+ {
1301
+ "disabled": false,
1302
+ "document": "统计指标(上行速率:\"TxRate\":bit/s,下行速率:\"RxRate\":bit/s,丢包:\"Loss\":%,时延:\"RTT\":ms)",
1303
+ "example": "\"TxRate\"",
1304
+ "member": "string",
1305
+ "name": "Metrics",
1306
+ "required": true,
1307
+ "type": "string"
1308
+ }
1309
+ ],
1310
+ "type": "object"
1311
+ },
1312
+ "GetNetMonitorResponse": {
1313
+ "document": "GetNetMonitor返回参数结构体",
1314
+ "members": [
1315
+ {
1316
+ "disabled": false,
1317
+ "document": "监控数据\n注意:此字段可能返回 null,表示取不到有效值。",
1318
+ "example": "无",
1319
+ "member": "MonitorData",
1320
+ "name": "MonitorData",
1321
+ "type": "list",
1322
+ "value_allowed_null": true
1323
+ },
1324
+ {
1325
+ "document": "唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。",
1326
+ "member": "string",
1327
+ "name": "RequestId",
1328
+ "type": "string"
1329
+ }
1330
+ ],
1331
+ "type": "object"
1332
+ },
1263
1333
  "GetPublicKeyRequest": {
1264
1334
  "document": "GetPublicKey请求参数结构体",
1265
1335
  "members": [],
@@ -1350,6 +1420,42 @@
1350
1420
  ],
1351
1421
  "type": "object"
1352
1422
  },
1423
+ "MonitorData": {
1424
+ "document": "流量监控指标",
1425
+ "members": [
1426
+ {
1427
+ "disabled": false,
1428
+ "document": "时间点:s",
1429
+ "example": "1662622200",
1430
+ "member": "string",
1431
+ "name": "Time",
1432
+ "required": true,
1433
+ "type": "string",
1434
+ "value_allowed_null": false
1435
+ },
1436
+ {
1437
+ "disabled": false,
1438
+ "document": "业务指标(bps/ms/%)\n注意:此字段可能返回 null,表示取不到有效值。",
1439
+ "example": "1.0",
1440
+ "member": "float",
1441
+ "name": "BusinessMetrics",
1442
+ "required": true,
1443
+ "type": "float",
1444
+ "value_allowed_null": true
1445
+ },
1446
+ {
1447
+ "disabled": false,
1448
+ "document": "网卡状态信息\n注意:此字段可能返回 null,表示取不到有效值。",
1449
+ "example": "无",
1450
+ "member": "SlotNetInfo",
1451
+ "name": "SlotNetInfo",
1452
+ "required": true,
1453
+ "type": "list",
1454
+ "value_allowed_null": true
1455
+ }
1456
+ ],
1457
+ "usage": "out"
1458
+ },
1353
1459
  "NetDetails": {
1354
1460
  "document": "网络详细信息",
1355
1461
  "members": [
@@ -1422,6 +1528,42 @@
1422
1528
  ],
1423
1529
  "usage": "in"
1424
1530
  },
1531
+ "SlotNetInfo": {
1532
+ "document": "网卡流量指标数据",
1533
+ "members": [
1534
+ {
1535
+ "disabled": false,
1536
+ "document": "网卡名\n注意:此字段可能返回 null,表示取不到有效值。",
1537
+ "example": "\"eth0\"",
1538
+ "member": "string",
1539
+ "name": "NetInfoName",
1540
+ "required": true,
1541
+ "type": "string",
1542
+ "value_allowed_null": true
1543
+ },
1544
+ {
1545
+ "disabled": false,
1546
+ "document": "公网IP\n注意:此字段可能返回 null,表示取不到有效值。",
1547
+ "example": "\"xxx.xxx.xx.xxx\"",
1548
+ "member": "string",
1549
+ "name": "PublicIP",
1550
+ "required": true,
1551
+ "type": "string",
1552
+ "value_allowed_null": true
1553
+ },
1554
+ {
1555
+ "disabled": false,
1556
+ "document": "指标数据(bps/ms/%)\n注意:此字段可能返回 null,表示取不到有效值。",
1557
+ "example": "2.3",
1558
+ "member": "float",
1559
+ "name": "Current",
1560
+ "required": true,
1561
+ "type": "float",
1562
+ "value_allowed_null": true
1563
+ }
1564
+ ],
1565
+ "usage": "out"
1566
+ },
1425
1567
  "SrcAddressInfo": {
1426
1568
  "document": "移动网络加速源地址结构体",
1427
1569
  "members": [
@@ -80,6 +80,14 @@
80
80
  "title": "批量设备流量使用信息"
81
81
  }
82
82
  ],
83
+ "GetNetMonitor": [
84
+ {
85
+ "document": "获取流量监控信息",
86
+ "input": "{\n \"Metrics\": \"TxRate\", \n \"EndTime\": 1662624800, \n \"DeviceId\": \"mna-xxx\", \n \"BeginTime\": 1662622200\n}",
87
+ "output": "{\n \"Response\": {\n \"MonitorData\": [\n {\n \"Time\": \"1673601780\",\n \"BusinessMetrics\": 492350276.319998,\n \"SlotNetInfo\": [\n {\n \"NetInfoName\": \"eth0\",\n \"PublicIP\": \"9.223.110.232\",\n \"Current\": 27582845.919998\n },\n {\n \"NetInfoName\": \"eth1\",\n \"PublicIP\": \"9.223.96.218\",\n \"Current\": 395158790.239997\n }\n ]\n },\n {\n \"Time\": \"1673601840\",\n \"BusinessMetrics\": 412655416,\n \"SlotNetInfo\": [\n {\n \"NetInfoName\": \"eth0\",\n \"PublicIP\": \"9.223.110.232\",\n \"Current\": 27228367.066665\n },\n {\n \"NetInfoName\": \"eth1\",\n \"PublicIP\": \"9.223.96.218\",\n \"Current\": 397505721.866666\n }\n ]\n },\n {\n \"Time\": \"1673601900\",\n \"BusinessMetrics\": 411823866.666665,\n \"SlotNetInfo\": [\n {\n \"NetInfoName\": \"eth0\",\n \"PublicIP\": \"9.223.110.232\",\n \"Current\": 28047154.266665\n },\n {\n \"NetInfoName\": \"eth1\",\n \"PublicIP\": \"9.223.96.218\",\n \"Current\": 396059005.333333\n }\n ]\n },\n {\n \"Time\": \"1673601960\",\n \"BusinessMetrics\": 412108687.733331,\n \"SlotNetInfo\": [\n {\n \"NetInfoName\": \"eth0\",\n \"PublicIP\": \"9.223.110.232\",\n \"Current\": 29244132.933331\n },\n {\n \"NetInfoName\": \"eth1\",\n \"PublicIP\": \"9.223.96.218\",\n \"Current\": 395156858.266664\n }\n ]\n },\n {\n \"Time\": \"1673602020\",\n \"BusinessMetrics\": 412778279.866666,\n \"SlotNetInfo\": [\n {\n \"NetInfoName\": \"eth0\",\n \"PublicIP\": \"9.223.110.232\",\n \"Current\": 26898350.666666\n },\n {\n \"NetInfoName\": \"eth1\",\n \"PublicIP\": \"9.223.96.218\",\n \"Current\": 398191465.733331\n }\n ]\n },\n {\n \"Time\": \"1673602080\",\n \"BusinessMetrics\": 412630582.533333,\n \"SlotNetInfo\": [\n {\n \"NetInfoName\": \"eth0\",\n \"PublicIP\": \"9.223.110.232\",\n \"Current\": 28580784.266665\n },\n {\n \"NetInfoName\": \"eth1\",\n \"PublicIP\": \"9.223.96.218\",\n \"Current\": 396357362.933332\n }\n ]\n },\n {\n \"Time\": \"1673602140\",\n \"BusinessMetrics\": 412431913.466665,\n \"SlotNetInfo\": [\n {\n \"NetInfoName\": \"eth0\",\n \"PublicIP\": \"9.223.110.232\",\n \"Current\": 27329174.8\n },\n {\n \"NetInfoName\": \"eth1\",\n \"PublicIP\": \"9.223.96.218\",\n \"Current\": 397404181.866666\n }\n ]\n },\n {\n \"Time\": \"1673602200\",\n \"BusinessMetrics\": 410982346.266665,\n \"SlotNetInfo\": [\n {\n \"NetInfoName\": \"eth0\",\n \"PublicIP\": \"9.223.110.232\",\n \"Current\": 29038580.399999\n },\n {\n \"NetInfoName\": \"eth1\",\n \"PublicIP\": \"9.223.96.218\",\n \"Current\": 394201611.866666\n }\n ]\n },\n {\n \"Time\": \"1673602260\",\n \"BusinessMetrics\": 409923330.933332,\n \"SlotNetInfo\": [\n {\n \"NetInfoName\": \"eth0\",\n \"PublicIP\": \"9.223.110.232\",\n \"Current\": 28212205.599999\n },\n {\n \"NetInfoName\": \"eth1\",\n \"PublicIP\": \"9.223.96.218\",\n \"Current\": 393937825.066666\n }\n ]\n },\n {\n \"Time\": \"1673602320\",\n \"BusinessMetrics\": 353662726.399999,\n \"SlotNetInfo\": [\n {\n \"NetInfoName\": \"eth0\",\n \"PublicIP\": \"9.223.110.232\",\n \"Current\": 25376171.542857\n },\n {\n \"NetInfoName\": \"eth1\",\n \"PublicIP\": \"9.223.96.218\",\n \"Current\": 338834939.199999\n }\n ]\n },\n {\n \"Time\": \"1673602380\",\n \"BusinessMetrics\": -1,\n \"SlotNetInfo\": [\n {\n \"NetInfoName\": \"eth0\",\n \"PublicIP\": \"9.223.110.232\",\n \"Current\": -1\n },\n {\n \"NetInfoName\": \"eth1\",\n \"PublicIP\": \"9.223.96.218\",\n \"Current\": -1\n }\n ]\n },\n {\n \"Time\": \"1673602440\",\n \"BusinessMetrics\": -1,\n \"SlotNetInfo\": [\n {\n \"NetInfoName\": \"eth0\",\n \"PublicIP\": \"9.223.110.232\",\n \"Current\": -1\n },\n {\n \"NetInfoName\": \"eth1\",\n \"PublicIP\": \"9.223.96.218\",\n \"Current\": -1\n }\n ]\n },\n {\n \"Time\": \"1673602500\",\n \"BusinessMetrics\": -1,\n \"SlotNetInfo\": [\n {\n \"NetInfoName\": \"eth0\",\n \"PublicIP\": \"9.223.110.232\",\n \"Current\": -1\n },\n {\n \"NetInfoName\": \"eth1\",\n \"PublicIP\": \"9.223.96.218\",\n \"Current\": -1\n }\n ]\n }\n ],\n \"RequestId\": \"xxx\"\n }\n}",
88
+ "title": "获取流量监控信息"
89
+ }
90
+ ],
83
91
  "GetPublicKey": [
84
92
  {
85
93
  "document": "",
@@ -14913,7 +14913,7 @@
14913
14913
  "example": "1300000000",
14914
14914
  "member": "string",
14915
14915
  "name": "Code",
14916
- "required": true,
14916
+ "output_required": true,
14917
14917
  "type": "string",
14918
14918
  "value_allowed_null": false
14919
14919
  },
@@ -14923,7 +14923,7 @@
14923
14923
  "example": "04000000",
14924
14924
  "member": "string",
14925
14925
  "name": "Number",
14926
- "required": true,
14926
+ "output_required": true,
14927
14927
  "type": "string",
14928
14928
  "value_allowed_null": false
14929
14929
  },
@@ -14933,7 +14933,7 @@
14933
14933
  "example": "20191211",
14934
14934
  "member": "string",
14935
14935
  "name": "Date",
14936
- "required": true,
14936
+ "output_required": true,
14937
14937
  "type": "string",
14938
14938
  "value_allowed_null": false
14939
14939
  },
@@ -14943,7 +14943,7 @@
14943
14943
  "example": "城区",
14944
14944
  "member": "string",
14945
14945
  "name": "BuyerName",
14946
- "required": true,
14946
+ "output_required": true,
14947
14947
  "type": "string",
14948
14948
  "value_allowed_null": false
14949
14949
  },
@@ -14953,7 +14953,7 @@
14953
14953
  "example": "92XXXXMAXXXXXX",
14954
14954
  "member": "string",
14955
14955
  "name": "BuyerTaxCode",
14956
- "required": true,
14956
+ "output_required": true,
14957
14957
  "type": "string",
14958
14958
  "value_allowed_null": false
14959
14959
  },
@@ -14963,7 +14963,7 @@
14963
14963
  "example": "栾城区北留营村15012345678",
14964
14964
  "member": "string",
14965
14965
  "name": "BuyerAddressPhone",
14966
- "required": true,
14966
+ "output_required": true,
14967
14967
  "type": "string",
14968
14968
  "value_allowed_null": false
14969
14969
  },
@@ -14973,7 +14973,7 @@
14973
14973
  "example": "中国农业银行股份有限公司",
14974
14974
  "member": "string",
14975
14975
  "name": "BuyerBankAccount",
14976
- "required": true,
14976
+ "output_required": true,
14977
14977
  "type": "string",
14978
14978
  "value_allowed_null": false
14979
14979
  },
@@ -14983,7 +14983,7 @@
14983
14983
  "example": "石家庄市XXX石油经销有限公司",
14984
14984
  "member": "string",
14985
14985
  "name": "SellerName",
14986
- "required": true,
14986
+ "output_required": true,
14987
14987
  "type": "string",
14988
14988
  "value_allowed_null": false
14989
14989
  },
@@ -14993,7 +14993,7 @@
14993
14993
  "example": "911301047981234567",
14994
14994
  "member": "string",
14995
14995
  "name": "SellerTaxCode",
14996
- "required": true,
14996
+ "output_required": true,
14997
14997
  "type": "string",
14998
14998
  "value_allowed_null": false
14999
14999
  },
@@ -15003,7 +15003,7 @@
15003
15003
  "example": "石家庄市桥西区师范街xx号 0311-12345678",
15004
15004
  "member": "string",
15005
15005
  "name": "SellerAddressPhone",
15006
- "required": true,
15006
+ "output_required": true,
15007
15007
  "type": "string",
15008
15008
  "value_allowed_null": false
15009
15009
  },
@@ -15013,7 +15013,7 @@
15013
15013
  "example": "911301047981234567",
15014
15014
  "member": "string",
15015
15015
  "name": "SellerBankAccount",
15016
- "required": true,
15016
+ "output_required": true,
15017
15017
  "type": "string",
15018
15018
  "value_allowed_null": false
15019
15019
  },
@@ -15023,7 +15023,7 @@
15023
15023
  "example": "空",
15024
15024
  "member": "string",
15025
15025
  "name": "Remark",
15026
- "required": true,
15026
+ "output_required": true,
15027
15027
  "type": "string",
15028
15028
  "value_allowed_null": false
15029
15029
  },
@@ -15033,7 +15033,7 @@
15033
15033
  "example": "661510100000",
15034
15034
  "member": "string",
15035
15035
  "name": "MachineNo",
15036
- "required": true,
15036
+ "output_required": true,
15037
15037
  "type": "string",
15038
15038
  "value_allowed_null": false
15039
15039
  },
@@ -15043,7 +15043,7 @@
15043
15043
  "example": "01",
15044
15044
  "member": "string",
15045
15045
  "name": "Type",
15046
- "required": true,
15046
+ "output_required": true,
15047
15047
  "type": "string",
15048
15048
  "value_allowed_null": false
15049
15049
  },
@@ -15053,7 +15053,7 @@
15053
15053
  "example": "85518065011000000000",
15054
15054
  "member": "string",
15055
15055
  "name": "CheckCode",
15056
- "required": true,
15056
+ "output_required": true,
15057
15057
  "type": "string",
15058
15058
  "value_allowed_null": false
15059
15059
  },
@@ -15063,7 +15063,7 @@
15063
15063
  "example": "否",
15064
15064
  "member": "string",
15065
15065
  "name": "IsAbandoned",
15066
- "required": true,
15066
+ "output_required": true,
15067
15067
  "type": "string",
15068
15068
  "value_allowed_null": false
15069
15069
  },
@@ -15073,7 +15073,7 @@
15073
15073
  "example": "否",
15074
15074
  "member": "string",
15075
15075
  "name": "HasSellerList",
15076
- "required": true,
15076
+ "output_required": true,
15077
15077
  "type": "string",
15078
15078
  "value_allowed_null": false
15079
15079
  },
@@ -15083,7 +15083,7 @@
15083
15083
  "example": "无",
15084
15084
  "member": "string",
15085
15085
  "name": "SellerListTitle",
15086
- "required": true,
15086
+ "output_required": true,
15087
15087
  "type": "string",
15088
15088
  "value_allowed_null": false
15089
15089
  },
@@ -15093,7 +15093,7 @@
15093
15093
  "example": "99.9",
15094
15094
  "member": "string",
15095
15095
  "name": "SellerListTax",
15096
- "required": true,
15096
+ "output_required": true,
15097
15097
  "type": "string",
15098
15098
  "value_allowed_null": false
15099
15099
  },
@@ -15103,7 +15103,7 @@
15103
15103
  "example": "129.0",
15104
15104
  "member": "string",
15105
15105
  "name": "AmountWithoutTax",
15106
- "required": true,
15106
+ "output_required": true,
15107
15107
  "type": "string",
15108
15108
  "value_allowed_null": false
15109
15109
  },
@@ -15113,7 +15113,7 @@
15113
15113
  "example": "9.0",
15114
15114
  "member": "string",
15115
15115
  "name": "TaxAmount",
15116
- "required": true,
15116
+ "output_required": true,
15117
15117
  "type": "string",
15118
15118
  "value_allowed_null": false
15119
15119
  },
@@ -15123,7 +15123,7 @@
15123
15123
  "example": "123.0",
15124
15124
  "member": "string",
15125
15125
  "name": "AmountWithTax",
15126
- "required": true,
15126
+ "output_required": true,
15127
15127
  "type": "string",
15128
15128
  "value_allowed_null": false
15129
15129
  },
@@ -15133,7 +15133,7 @@
15133
15133
  "example": "无",
15134
15134
  "member": "VatInvoiceItem",
15135
15135
  "name": "Items",
15136
- "required": true,
15136
+ "output_required": true,
15137
15137
  "type": "list",
15138
15138
  "value_allowed_null": false
15139
15139
  },
@@ -15143,7 +15143,7 @@
15143
15143
  "example": "深圳",
15144
15144
  "member": "string",
15145
15145
  "name": "TaxBureau",
15146
- "required": true,
15146
+ "output_required": true,
15147
15147
  "type": "string",
15148
15148
  "value_allowed_null": false
15149
15149
  },
@@ -15153,7 +15153,47 @@
15153
15153
  "example": "N",
15154
15154
  "member": "string",
15155
15155
  "name": "TrafficFreeFlag",
15156
- "required": true,
15156
+ "output_required": true,
15157
+ "type": "string",
15158
+ "value_allowed_null": false
15159
+ },
15160
+ {
15161
+ "disabled": false,
15162
+ "document": "是否为红票\n注意:此字段可能返回 null,表示取不到有效值。",
15163
+ "example": "无",
15164
+ "member": "bool",
15165
+ "name": "RedLetterInvoiceMark",
15166
+ "output_required": false,
15167
+ "type": "bool",
15168
+ "value_allowed_null": true
15169
+ },
15170
+ {
15171
+ "disabled": false,
15172
+ "document": "开具类型标识(0: 委托代开,1:自开,2:代开,3:代办退税\n注意:此字段可能返回 null,表示取不到有效值。",
15173
+ "example": "无",
15174
+ "member": "int64",
15175
+ "name": "IssuingTypeMark",
15176
+ "output_required": false,
15177
+ "type": "int",
15178
+ "value_allowed_null": true
15179
+ },
15180
+ {
15181
+ "disabled": false,
15182
+ "document": "代开销售方名称",
15183
+ "example": "无",
15184
+ "member": "string",
15185
+ "name": "SellerAgentName",
15186
+ "output_required": false,
15187
+ "type": "string",
15188
+ "value_allowed_null": false
15189
+ },
15190
+ {
15191
+ "disabled": false,
15192
+ "document": "代开销售方税号",
15193
+ "example": "无",
15194
+ "member": "string",
15195
+ "name": "SellerAgentTaxID",
15196
+ "output_required": false,
15157
15197
  "type": "string",
15158
15198
  "value_allowed_null": false
15159
15199
  }
@@ -650,7 +650,7 @@
650
650
  {
651
651
  "document": "增值税发票核验示例代码",
652
652
  "input": "POST / HTTP/1.1\nHost: ocr.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: VatInvoiceVerifyNew\n<公共请求参数>\n\n{\n \"InvoiceCode\": \"144002288010\",\n \"InvoiceNo\": \"04138864\",\n \"InvoiceDate\": \"2022-11-16\",\n \"Amount\": \"498.90\",\n \"CheckCode\": \"00000000005672311400\",\n \"RegionCode\": \"4400\",\n \"SellerTaxCode\": \"44078819091887401X\",\n \"EnableCommonElectronic\": true\n}",
653
- "output": "{\n \"Response\": {\n \"Invoice\": {\n \"AmountWithTax\": \"498.90\",\n \"AmountWithoutTax\": \"0.00\",\n \"BuyerAddressPhone\": \"\",\n \"BuyerBankAccount\": \"\",\n \"BuyerName\": \"\",\n \"BuyerTaxCode\": \"\",\n \"CheckCode\": \"\",\n \"Code\": \"144002288010\",\n \"Date\": \"\",\n \"HasSellerList\": \"\",\n \"IsAbandoned\": \"N\",\n \"Items\": [],\n \"MachineNo\": \"\",\n \"Number\": \"04138864\",\n \"Remark\": \"\",\n \"SellerAddressPhone\": \"\",\n \"SellerBankAccount\": \"\",\n \"SellerListTax\": \"\",\n \"SellerListTitle\": \"\",\n \"SellerName\": \"广州市天河区员美丽美食店\",\n \"SellerTaxCode\": \"\",\n \"TaxAmount\": \"0.00\",\n \"TaxBureau\": \"\",\n \"TrafficFreeFlag\": \"N\",\n \"Type\": \"102\"\n },\n \"PassInvoiceInfoList\": [],\n \"RequestId\": \"f3cd280c-6d3a-41c5-8493-4ed98f8b2755\",\n \"UsedVehicleInvoiceInfo\": {\n \"Auctioneer\": \"\",\n \"AuctioneerAddress\": \"\",\n \"AuctioneerBankAccount\": \"\",\n \"AuctioneerTaxpayerNum\": \"\",\n \"AuctioneerTel\": \"\",\n \"Buyer\": \"\",\n \"BuyerAddress\": \"\",\n \"BuyerNo\": \"\",\n \"BuyerTel\": \"\",\n \"ManagementOffice\": \"\",\n \"Market\": \"\",\n \"MarketAddress\": \"\",\n \"MarketBankAccount\": \"\",\n \"MarketTaxpayerNum\": \"\",\n \"MarketTel\": \"\",\n \"RegisterNo\": \"\",\n \"Seller\": \"\",\n \"SellerAddress\": \"\",\n \"SellerNo\": \"\",\n \"SellerTel\": \"\",\n \"TaxBureau\": \"\",\n \"VehicleIdentifyNo\": \"\",\n \"VehicleLicenseNo\": \"\",\n \"VehicleTotalPrice\": \"\"\n },\n \"VehicleInvoiceInfo\": {\n \"BizCheckFormNo\": \"\",\n \"BuyerNo\": \"\",\n \"CarType\": \"\",\n \"CertificateNo\": \"\",\n \"EngineNo\": \"\",\n \"ImportNo\": \"\",\n \"LimitCount\": \"\",\n \"MotorBankAccount\": \"\",\n \"MotorBankName\": \"\",\n \"MotorTaxRate\": \"\",\n \"PayTaxesNo\": \"\",\n \"PlateModel\": \"\",\n \"ProduceAddress\": \"\",\n \"SellerAddress\": \"\",\n \"SellerTel\": \"\",\n \"TaxtationOrgCode\": \"\",\n \"TaxtationOrgName\": \"\",\n \"Tonnage\": \"\",\n \"VinNo\": \"\"\n }\n }\n}",
653
+ "output": "{\n \"Response\": {\n \"Invoice\": {\n \"AmountWithTax\": \"498.90\",\n \"AmountWithoutTax\": \"0.00\",\n \"BuyerAddressPhone\": \"\",\n \"BuyerBankAccount\": \"\",\n \"BuyerName\": \"\",\n \"BuyerTaxCode\": \"\",\n \"CheckCode\": \"\",\n \"Code\": \"144002288010\",\n \"Date\": \"\",\n \"HasSellerList\": \"\",\n \"IsAbandoned\": \"N\",\n \"Items\": [],\n \"MachineNo\": \"\",\n \"Number\": \"04138864\",\n \"Remark\": \"\",\n \"RedLetterInvoiceMark\": false,\n \"IssuingTypeMark\": 1,\n \"SellerAddressPhone\": \"\",\n \"SellerBankAccount\": \"\",\n \"SellerAgentName\": \"\",\n \"SellerAgentTaxID\": \"\",\n \"SellerListTax\": \"\",\n \"SellerListTitle\": \"\",\n \"SellerName\": \"广州市天河区员美丽美食店\",\n \"SellerTaxCode\": \"\",\n \"TaxAmount\": \"0.00\",\n \"TaxBureau\": \"\",\n \"TrafficFreeFlag\": \"N\",\n \"Type\": \"102\"\n },\n \"PassInvoiceInfoList\": [],\n \"RequestId\": \"f3cd280c-6d3a-41c5-8493-4ed98f8b2755\",\n \"UsedVehicleInvoiceInfo\": {\n \"Auctioneer\": \"\",\n \"AuctioneerAddress\": \"\",\n \"AuctioneerBankAccount\": \"\",\n \"AuctioneerTaxpayerNum\": \"\",\n \"AuctioneerTel\": \"\",\n \"Buyer\": \"\",\n \"BuyerAddress\": \"\",\n \"BuyerNo\": \"\",\n \"BuyerTel\": \"\",\n \"ManagementOffice\": \"\",\n \"Market\": \"\",\n \"MarketAddress\": \"\",\n \"MarketBankAccount\": \"\",\n \"MarketTaxpayerNum\": \"\",\n \"MarketTel\": \"\",\n \"RegisterNo\": \"\",\n \"Seller\": \"\",\n \"SellerAddress\": \"\",\n \"SellerNo\": \"\",\n \"SellerTel\": \"\",\n \"TaxBureau\": \"\",\n \"VehicleIdentifyNo\": \"\",\n \"VehicleLicenseNo\": \"\",\n \"VehicleTotalPrice\": \"\"\n },\n \"VehicleInvoiceInfo\": {\n \"BizCheckFormNo\": \"\",\n \"BuyerNo\": \"\",\n \"CarType\": \"\",\n \"CertificateNo\": \"\",\n \"EngineNo\": \"\",\n \"ImportNo\": \"\",\n \"LimitCount\": \"\",\n \"MotorBankAccount\": \"\",\n \"MotorBankName\": \"\",\n \"MotorTaxRate\": \"\",\n \"PayTaxesNo\": \"\",\n \"PlateModel\": \"\",\n \"ProduceAddress\": \"\",\n \"SellerAddress\": \"\",\n \"SellerTel\": \"\",\n \"TaxtationOrgCode\": \"\",\n \"TaxtationOrgName\": \"\",\n \"Tonnage\": \"\",\n \"VinNo\": \"\"\n }\n }\n}",
654
654
  "title": "增值税发票核验示例代码"
655
655
  }
656
656
  ],