tencentcloud-sdk-nodejs-intl-en 3.0.1162 → 3.0.1163
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.
- package/package.json +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/intlpartnersmgt/v20220928/intlpartnersmgt_client.js +15 -0
- package/tencentcloud/intlpartnersmgt/v20220928/models.js +216 -0
- package/tencentcloud/ocr/v20181119/models.js +365 -167
- package/tencentcloud/ocr/v20181119/ocr_client.js +32 -19
- package/tencentcloud/wedata/v20210820/models.js +76 -55
package/package.json
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
const sdkVersion = "3.0.
|
|
1
|
+
const sdkVersion = "3.0.1163";
|
|
2
2
|
module.exports = sdkVersion
|
|
@@ -24,6 +24,7 @@ const QueryT1IndirectCustomersDetailRequest = models.QueryT1IndirectCustomersDet
|
|
|
24
24
|
const CreateAndSendClientInvitationMailResponse = models.CreateAndSendClientInvitationMailResponse;
|
|
25
25
|
const CustomerBillDetailData = models.CustomerBillDetailData;
|
|
26
26
|
const RegionSummaryOverviewItem = models.RegionSummaryOverviewItem;
|
|
27
|
+
const QuerySubAgentsDetailV2Response = models.QuerySubAgentsDetailV2Response;
|
|
27
28
|
const DescribeCustomerBillDownloadUrlRequest = models.DescribeCustomerBillDownloadUrlRequest;
|
|
28
29
|
const DescribeCustomerUinData = models.DescribeCustomerUinData;
|
|
29
30
|
const CountryCodeItem = models.CountryCodeItem;
|
|
@@ -52,6 +53,7 @@ const AllocateCustomerCreditRequest = models.AllocateCustomerCreditRequest;
|
|
|
52
53
|
const DescribeBillDownloadUrlRequest = models.DescribeBillDownloadUrlRequest;
|
|
53
54
|
const DescribeBillSummaryByPayModeRequest = models.DescribeBillSummaryByPayModeRequest;
|
|
54
55
|
const QueryInvitationInfoData = models.QueryInvitationInfoData;
|
|
56
|
+
const QuerySubAgentsDetailV2Request = models.QuerySubAgentsDetailV2Request;
|
|
55
57
|
const GetCountryCodesResponse = models.GetCountryCodesResponse;
|
|
56
58
|
const QueryT1IndirectCustomersDetailResponse = models.QueryT1IndirectCustomersDetailResponse;
|
|
57
59
|
const AllocateCustomerCreditResponse = models.AllocateCustomerCreditResponse;
|
|
@@ -66,6 +68,7 @@ const DescribeBillDownloadUrlResponse = models.DescribeBillDownloadUrlResponse;
|
|
|
66
68
|
const DescribeCustomerUinRequest = models.DescribeCustomerUinRequest;
|
|
67
69
|
const TradeOneNode = models.TradeOneNode;
|
|
68
70
|
const DescribeRebateDownloadUrlResponse = models.DescribeRebateDownloadUrlResponse;
|
|
71
|
+
const QuerySubAgentsDetailV2ResponseData = models.QuerySubAgentsDetailV2ResponseData;
|
|
69
72
|
const DescribeBillSummaryResponse = models.DescribeBillSummaryResponse;
|
|
70
73
|
const QueryInvitationInfoRequest = models.QueryInvitationInfoRequest;
|
|
71
74
|
const QueryCustomersCreditRequest = models.QueryCustomersCreditRequest;
|
|
@@ -228,6 +231,18 @@ Callable roles: Reseller, Distributer, Second-level reseller
|
|
|
228
231
|
this.request("ApproveClientApply", req, resp, cb);
|
|
229
232
|
}
|
|
230
233
|
|
|
234
|
+
/**
|
|
235
|
+
* This API is used to query information of second-level resellers.
|
|
236
|
+
Invocation Role:Distributor.
|
|
237
|
+
* @param {QuerySubAgentsDetailV2Request} req
|
|
238
|
+
* @param {function(string, QuerySubAgentsDetailV2Response):void} cb
|
|
239
|
+
* @public
|
|
240
|
+
*/
|
|
241
|
+
QuerySubAgentsDetailV2(req, cb) {
|
|
242
|
+
let resp = new QuerySubAgentsDetailV2Response();
|
|
243
|
+
this.request("QuerySubAgentsDetailV2", req, resp, cb);
|
|
244
|
+
}
|
|
245
|
+
|
|
231
246
|
/**
|
|
232
247
|
* This API is used to query sub-customer information.
|
|
233
248
|
Invocation roles: reseller, first-level distributor.
|
|
@@ -588,6 +588,56 @@ class RegionSummaryOverviewItem extends AbstractModel {
|
|
|
588
588
|
}
|
|
589
589
|
}
|
|
590
590
|
|
|
591
|
+
/**
|
|
592
|
+
* QuerySubAgentsDetailV2 response structure.
|
|
593
|
+
* @class
|
|
594
|
+
*/
|
|
595
|
+
class QuerySubAgentsDetailV2Response extends AbstractModel {
|
|
596
|
+
constructor(){
|
|
597
|
+
super();
|
|
598
|
+
|
|
599
|
+
/**
|
|
600
|
+
* Number of second-level resellers.
|
|
601
|
+
* @type {number || null}
|
|
602
|
+
*/
|
|
603
|
+
this.Total = null;
|
|
604
|
+
|
|
605
|
+
/**
|
|
606
|
+
* Second-Level reseller information.
|
|
607
|
+
* @type {Array.<QuerySubAgentsDetailV2ResponseData> || null}
|
|
608
|
+
*/
|
|
609
|
+
this.Data = null;
|
|
610
|
+
|
|
611
|
+
/**
|
|
612
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
613
|
+
* @type {string || null}
|
|
614
|
+
*/
|
|
615
|
+
this.RequestId = null;
|
|
616
|
+
|
|
617
|
+
}
|
|
618
|
+
|
|
619
|
+
/**
|
|
620
|
+
* @private
|
|
621
|
+
*/
|
|
622
|
+
deserialize(params) {
|
|
623
|
+
if (!params) {
|
|
624
|
+
return;
|
|
625
|
+
}
|
|
626
|
+
this.Total = 'Total' in params ? params.Total : null;
|
|
627
|
+
|
|
628
|
+
if (params.Data) {
|
|
629
|
+
this.Data = new Array();
|
|
630
|
+
for (let z in params.Data) {
|
|
631
|
+
let obj = new QuerySubAgentsDetailV2ResponseData();
|
|
632
|
+
obj.deserialize(params.Data[z]);
|
|
633
|
+
this.Data.push(obj);
|
|
634
|
+
}
|
|
635
|
+
}
|
|
636
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
637
|
+
|
|
638
|
+
}
|
|
639
|
+
}
|
|
640
|
+
|
|
591
641
|
/**
|
|
592
642
|
* DescribeCustomerBillDownloadUrl request structure.
|
|
593
643
|
* @class
|
|
@@ -1919,6 +1969,71 @@ class QueryInvitationInfoData extends AbstractModel {
|
|
|
1919
1969
|
}
|
|
1920
1970
|
}
|
|
1921
1971
|
|
|
1972
|
+
/**
|
|
1973
|
+
* QuerySubAgentsDetailV2 request structure.
|
|
1974
|
+
* @class
|
|
1975
|
+
*/
|
|
1976
|
+
class QuerySubAgentsDetailV2Request extends AbstractModel {
|
|
1977
|
+
constructor(){
|
|
1978
|
+
super();
|
|
1979
|
+
|
|
1980
|
+
/**
|
|
1981
|
+
* Page number. starts from 1.
|
|
1982
|
+
* @type {number || null}
|
|
1983
|
+
*/
|
|
1984
|
+
this.Page = null;
|
|
1985
|
+
|
|
1986
|
+
/**
|
|
1987
|
+
* Number of items per page. supports up to 100.
|
|
1988
|
+
* @type {number || null}
|
|
1989
|
+
*/
|
|
1990
|
+
this.PageSize = null;
|
|
1991
|
+
|
|
1992
|
+
/**
|
|
1993
|
+
* Filter criteria, support the following filter parameters.
|
|
1994
|
+
Note: Email, SubAgentUin, and ClientUin only support exact search. other conditions support fuzzy retrieval.
|
|
1995
|
+
Name: filter criteria based on customer name.
|
|
1996
|
+
SubAgentUin: specifies the uin of the second-level reseller.
|
|
1997
|
+
Remark: remark.
|
|
1998
|
+
Mobile: specifies the mobile number.
|
|
1999
|
+
Specifies the mailbox.
|
|
2000
|
+
ClientUin: specifies the sub-customer uin.
|
|
2001
|
+
* @type {string || null}
|
|
2002
|
+
*/
|
|
2003
|
+
this.FilterType = null;
|
|
2004
|
+
|
|
2005
|
+
/**
|
|
2006
|
+
* Filter value
|
|
2007
|
+
* @type {string || null}
|
|
2008
|
+
*/
|
|
2009
|
+
this.Filter = null;
|
|
2010
|
+
|
|
2011
|
+
/**
|
|
2012
|
+
* Sorting method. sorts by binding time in ascending or descending order. defaults to descending order if not specified.
|
|
2013
|
+
Desc: descending order.
|
|
2014
|
+
acs: ascending.
|
|
2015
|
+
* @type {string || null}
|
|
2016
|
+
*/
|
|
2017
|
+
this.Order = null;
|
|
2018
|
+
|
|
2019
|
+
}
|
|
2020
|
+
|
|
2021
|
+
/**
|
|
2022
|
+
* @private
|
|
2023
|
+
*/
|
|
2024
|
+
deserialize(params) {
|
|
2025
|
+
if (!params) {
|
|
2026
|
+
return;
|
|
2027
|
+
}
|
|
2028
|
+
this.Page = 'Page' in params ? params.Page : null;
|
|
2029
|
+
this.PageSize = 'PageSize' in params ? params.PageSize : null;
|
|
2030
|
+
this.FilterType = 'FilterType' in params ? params.FilterType : null;
|
|
2031
|
+
this.Filter = 'Filter' in params ? params.Filter : null;
|
|
2032
|
+
this.Order = 'Order' in params ? params.Order : null;
|
|
2033
|
+
|
|
2034
|
+
}
|
|
2035
|
+
}
|
|
2036
|
+
|
|
1922
2037
|
/**
|
|
1923
2038
|
* GetCountryCodes response structure.
|
|
1924
2039
|
* @class
|
|
@@ -2547,6 +2662,104 @@ class DescribeRebateDownloadUrlResponse extends AbstractModel {
|
|
|
2547
2662
|
}
|
|
2548
2663
|
}
|
|
2549
2664
|
|
|
2665
|
+
/**
|
|
2666
|
+
* Second-Level reseller information.
|
|
2667
|
+
* @class
|
|
2668
|
+
*/
|
|
2669
|
+
class QuerySubAgentsDetailV2ResponseData extends AbstractModel {
|
|
2670
|
+
constructor(){
|
|
2671
|
+
super();
|
|
2672
|
+
|
|
2673
|
+
/**
|
|
2674
|
+
* Second-level reseller UIN.
|
|
2675
|
+
* @type {number || null}
|
|
2676
|
+
*/
|
|
2677
|
+
this.SubAgentUin = null;
|
|
2678
|
+
|
|
2679
|
+
/**
|
|
2680
|
+
* Name
|
|
2681
|
+
* @type {string || null}
|
|
2682
|
+
*/
|
|
2683
|
+
this.Name = null;
|
|
2684
|
+
|
|
2685
|
+
/**
|
|
2686
|
+
* Remarks
|
|
2687
|
+
* @type {string || null}
|
|
2688
|
+
*/
|
|
2689
|
+
this.Remark = null;
|
|
2690
|
+
|
|
2691
|
+
/**
|
|
2692
|
+
* Mobile number.
|
|
2693
|
+
* @type {string || null}
|
|
2694
|
+
*/
|
|
2695
|
+
this.Mobile = null;
|
|
2696
|
+
|
|
2697
|
+
/**
|
|
2698
|
+
* Specifies the mailbox.
|
|
2699
|
+
* @type {string || null}
|
|
2700
|
+
*/
|
|
2701
|
+
this.Email = null;
|
|
2702
|
+
|
|
2703
|
+
/**
|
|
2704
|
+
* Number of secondary dealer sub-customers.
|
|
2705
|
+
* @type {number || null}
|
|
2706
|
+
*/
|
|
2707
|
+
this.CountOfCustomers = null;
|
|
2708
|
+
|
|
2709
|
+
/**
|
|
2710
|
+
* Binding time.
|
|
2711
|
+
* @type {string || null}
|
|
2712
|
+
*/
|
|
2713
|
+
this.BindTime = null;
|
|
2714
|
+
|
|
2715
|
+
/**
|
|
2716
|
+
* Credit limit pool of second-level reseller.
|
|
2717
|
+
* @type {number || null}
|
|
2718
|
+
*/
|
|
2719
|
+
this.Credit = null;
|
|
2720
|
+
|
|
2721
|
+
/**
|
|
2722
|
+
* Value pool of unconsumed credit limit for second-level reseller.
|
|
2723
|
+
* @type {number || null}
|
|
2724
|
+
*/
|
|
2725
|
+
this.RemainingCredit = null;
|
|
2726
|
+
|
|
2727
|
+
/**
|
|
2728
|
+
* Cash coupon quota pool for second-level reseller.
|
|
2729
|
+
* @type {number || null}
|
|
2730
|
+
*/
|
|
2731
|
+
this.Voucher = null;
|
|
2732
|
+
|
|
2733
|
+
/**
|
|
2734
|
+
* Balance of cash coupon quota pool for second-level reseller.
|
|
2735
|
+
* @type {number || null}
|
|
2736
|
+
*/
|
|
2737
|
+
this.RemainingVoucher = null;
|
|
2738
|
+
|
|
2739
|
+
}
|
|
2740
|
+
|
|
2741
|
+
/**
|
|
2742
|
+
* @private
|
|
2743
|
+
*/
|
|
2744
|
+
deserialize(params) {
|
|
2745
|
+
if (!params) {
|
|
2746
|
+
return;
|
|
2747
|
+
}
|
|
2748
|
+
this.SubAgentUin = 'SubAgentUin' in params ? params.SubAgentUin : null;
|
|
2749
|
+
this.Name = 'Name' in params ? params.Name : null;
|
|
2750
|
+
this.Remark = 'Remark' in params ? params.Remark : null;
|
|
2751
|
+
this.Mobile = 'Mobile' in params ? params.Mobile : null;
|
|
2752
|
+
this.Email = 'Email' in params ? params.Email : null;
|
|
2753
|
+
this.CountOfCustomers = 'CountOfCustomers' in params ? params.CountOfCustomers : null;
|
|
2754
|
+
this.BindTime = 'BindTime' in params ? params.BindTime : null;
|
|
2755
|
+
this.Credit = 'Credit' in params ? params.Credit : null;
|
|
2756
|
+
this.RemainingCredit = 'RemainingCredit' in params ? params.RemainingCredit : null;
|
|
2757
|
+
this.Voucher = 'Voucher' in params ? params.Voucher : null;
|
|
2758
|
+
this.RemainingVoucher = 'RemainingVoucher' in params ? params.RemainingVoucher : null;
|
|
2759
|
+
|
|
2760
|
+
}
|
|
2761
|
+
}
|
|
2762
|
+
|
|
2550
2763
|
/**
|
|
2551
2764
|
* DescribeBillSummary response structure.
|
|
2552
2765
|
* @class
|
|
@@ -4998,6 +5211,7 @@ module.exports = {
|
|
|
4998
5211
|
CreateAndSendClientInvitationMailResponse: CreateAndSendClientInvitationMailResponse,
|
|
4999
5212
|
CustomerBillDetailData: CustomerBillDetailData,
|
|
5000
5213
|
RegionSummaryOverviewItem: RegionSummaryOverviewItem,
|
|
5214
|
+
QuerySubAgentsDetailV2Response: QuerySubAgentsDetailV2Response,
|
|
5001
5215
|
DescribeCustomerBillDownloadUrlRequest: DescribeCustomerBillDownloadUrlRequest,
|
|
5002
5216
|
DescribeCustomerUinData: DescribeCustomerUinData,
|
|
5003
5217
|
CountryCodeItem: CountryCodeItem,
|
|
@@ -5026,6 +5240,7 @@ module.exports = {
|
|
|
5026
5240
|
DescribeBillDownloadUrlRequest: DescribeBillDownloadUrlRequest,
|
|
5027
5241
|
DescribeBillSummaryByPayModeRequest: DescribeBillSummaryByPayModeRequest,
|
|
5028
5242
|
QueryInvitationInfoData: QueryInvitationInfoData,
|
|
5243
|
+
QuerySubAgentsDetailV2Request: QuerySubAgentsDetailV2Request,
|
|
5029
5244
|
GetCountryCodesResponse: GetCountryCodesResponse,
|
|
5030
5245
|
QueryT1IndirectCustomersDetailResponse: QueryT1IndirectCustomersDetailResponse,
|
|
5031
5246
|
AllocateCustomerCreditResponse: AllocateCustomerCreditResponse,
|
|
@@ -5040,6 +5255,7 @@ module.exports = {
|
|
|
5040
5255
|
DescribeCustomerUinRequest: DescribeCustomerUinRequest,
|
|
5041
5256
|
TradeOneNode: TradeOneNode,
|
|
5042
5257
|
DescribeRebateDownloadUrlResponse: DescribeRebateDownloadUrlResponse,
|
|
5258
|
+
QuerySubAgentsDetailV2ResponseData: QuerySubAgentsDetailV2ResponseData,
|
|
5043
5259
|
DescribeBillSummaryResponse: DescribeBillSummaryResponse,
|
|
5044
5260
|
QueryInvitationInfoRequest: QueryInvitationInfoRequest,
|
|
5045
5261
|
QueryCustomersCreditRequest: QueryCustomersCreditRequest,
|
|
@@ -2758,90 +2758,37 @@ class OtherInvoice extends AbstractModel {
|
|
|
2758
2758
|
}
|
|
2759
2759
|
|
|
2760
2760
|
/**
|
|
2761
|
-
*
|
|
2761
|
+
* RecognizePhilippinesUMIDOCR request structure.
|
|
2762
2762
|
* @class
|
|
2763
2763
|
*/
|
|
2764
|
-
class
|
|
2764
|
+
class RecognizePhilippinesUMIDOCRRequest extends AbstractModel {
|
|
2765
2765
|
constructor(){
|
|
2766
2766
|
super();
|
|
2767
2767
|
|
|
2768
2768
|
/**
|
|
2769
|
-
* The Base64-encoded
|
|
2770
|
-
|
|
2771
|
-
|
|
2772
|
-
|
|
2773
|
-
|
|
2774
|
-
/**
|
|
2775
|
-
* The full name.
|
|
2776
|
-
* @type {TextDetectionResult || null}
|
|
2777
|
-
*/
|
|
2778
|
-
this.Name = null;
|
|
2779
|
-
|
|
2780
|
-
/**
|
|
2781
|
-
* The last name.
|
|
2782
|
-
* @type {TextDetectionResult || null}
|
|
2783
|
-
*/
|
|
2784
|
-
this.LastName = null;
|
|
2785
|
-
|
|
2786
|
-
/**
|
|
2787
|
-
* The first name.
|
|
2788
|
-
* @type {TextDetectionResult || null}
|
|
2789
|
-
*/
|
|
2790
|
-
this.FirstName = null;
|
|
2791
|
-
|
|
2792
|
-
/**
|
|
2793
|
-
* The middle name.
|
|
2794
|
-
* @type {TextDetectionResult || null}
|
|
2795
|
-
*/
|
|
2796
|
-
this.MiddleName = null;
|
|
2797
|
-
|
|
2798
|
-
/**
|
|
2799
|
-
* The nationality.
|
|
2800
|
-
* @type {TextDetectionResult || null}
|
|
2801
|
-
*/
|
|
2802
|
-
this.Nationality = null;
|
|
2803
|
-
|
|
2804
|
-
/**
|
|
2805
|
-
* The gender.
|
|
2806
|
-
* @type {TextDetectionResult || null}
|
|
2807
|
-
*/
|
|
2808
|
-
this.Sex = null;
|
|
2809
|
-
|
|
2810
|
-
/**
|
|
2811
|
-
* The address.
|
|
2812
|
-
* @type {TextDetectionResult || null}
|
|
2813
|
-
*/
|
|
2814
|
-
this.Address = null;
|
|
2815
|
-
|
|
2816
|
-
/**
|
|
2817
|
-
* The license No.
|
|
2818
|
-
* @type {TextDetectionResult || null}
|
|
2819
|
-
*/
|
|
2820
|
-
this.LicenseNo = null;
|
|
2821
|
-
|
|
2822
|
-
/**
|
|
2823
|
-
* The expiration date.
|
|
2824
|
-
* @type {TextDetectionResult || null}
|
|
2825
|
-
*/
|
|
2826
|
-
this.ExpiresDate = null;
|
|
2827
|
-
|
|
2828
|
-
/**
|
|
2829
|
-
* The agency code.
|
|
2830
|
-
* @type {TextDetectionResult || null}
|
|
2769
|
+
* The Base64-encoded value of the image.
|
|
2770
|
+
Supported image formats: PNG, JPG, and JPEG. GIF is currently not supported.
|
|
2771
|
+
Supported image size: The downloaded image after Base64 encoding can be up to 7 MB. The download time of the image cannot exceed 3s.
|
|
2772
|
+
Either `ImageUrl` or `ImageBase64` of the image must be provided. If both are provided, only `ImageUrl` is used.
|
|
2773
|
+
* @type {string || null}
|
|
2831
2774
|
*/
|
|
2832
|
-
this.
|
|
2775
|
+
this.ImageBase64 = null;
|
|
2833
2776
|
|
|
2834
2777
|
/**
|
|
2835
|
-
* The
|
|
2836
|
-
|
|
2778
|
+
* The URL of the image.
|
|
2779
|
+
Supported image formats: PNG, JPG, and JPEG. GIF is currently not supported.
|
|
2780
|
+
Supported image size: The downloaded image after Base64 encoding can be up to 7 MB. The download time of the image cannot exceed 3s.
|
|
2781
|
+
We recommend that you store the image in Tencent Cloud for higher download speed and stability.
|
|
2782
|
+
The download speed and stability of non-Tencent Cloud URLs may be low.
|
|
2783
|
+
* @type {string || null}
|
|
2837
2784
|
*/
|
|
2838
|
-
this.
|
|
2785
|
+
this.ImageUrl = null;
|
|
2839
2786
|
|
|
2840
2787
|
/**
|
|
2841
|
-
*
|
|
2842
|
-
* @type {
|
|
2788
|
+
* Whether to return the identity photo.
|
|
2789
|
+
* @type {boolean || null}
|
|
2843
2790
|
*/
|
|
2844
|
-
this.
|
|
2791
|
+
this.ReturnHeadImage = null;
|
|
2845
2792
|
|
|
2846
2793
|
}
|
|
2847
2794
|
|
|
@@ -2852,79 +2799,9 @@ class RecognizePhilippinesDrivingLicenseOCRResponse extends AbstractModel {
|
|
|
2852
2799
|
if (!params) {
|
|
2853
2800
|
return;
|
|
2854
2801
|
}
|
|
2855
|
-
|
|
2856
|
-
|
|
2857
|
-
|
|
2858
|
-
obj.deserialize(params.HeadPortrait)
|
|
2859
|
-
this.HeadPortrait = obj;
|
|
2860
|
-
}
|
|
2861
|
-
|
|
2862
|
-
if (params.Name) {
|
|
2863
|
-
let obj = new TextDetectionResult();
|
|
2864
|
-
obj.deserialize(params.Name)
|
|
2865
|
-
this.Name = obj;
|
|
2866
|
-
}
|
|
2867
|
-
|
|
2868
|
-
if (params.LastName) {
|
|
2869
|
-
let obj = new TextDetectionResult();
|
|
2870
|
-
obj.deserialize(params.LastName)
|
|
2871
|
-
this.LastName = obj;
|
|
2872
|
-
}
|
|
2873
|
-
|
|
2874
|
-
if (params.FirstName) {
|
|
2875
|
-
let obj = new TextDetectionResult();
|
|
2876
|
-
obj.deserialize(params.FirstName)
|
|
2877
|
-
this.FirstName = obj;
|
|
2878
|
-
}
|
|
2879
|
-
|
|
2880
|
-
if (params.MiddleName) {
|
|
2881
|
-
let obj = new TextDetectionResult();
|
|
2882
|
-
obj.deserialize(params.MiddleName)
|
|
2883
|
-
this.MiddleName = obj;
|
|
2884
|
-
}
|
|
2885
|
-
|
|
2886
|
-
if (params.Nationality) {
|
|
2887
|
-
let obj = new TextDetectionResult();
|
|
2888
|
-
obj.deserialize(params.Nationality)
|
|
2889
|
-
this.Nationality = obj;
|
|
2890
|
-
}
|
|
2891
|
-
|
|
2892
|
-
if (params.Sex) {
|
|
2893
|
-
let obj = new TextDetectionResult();
|
|
2894
|
-
obj.deserialize(params.Sex)
|
|
2895
|
-
this.Sex = obj;
|
|
2896
|
-
}
|
|
2897
|
-
|
|
2898
|
-
if (params.Address) {
|
|
2899
|
-
let obj = new TextDetectionResult();
|
|
2900
|
-
obj.deserialize(params.Address)
|
|
2901
|
-
this.Address = obj;
|
|
2902
|
-
}
|
|
2903
|
-
|
|
2904
|
-
if (params.LicenseNo) {
|
|
2905
|
-
let obj = new TextDetectionResult();
|
|
2906
|
-
obj.deserialize(params.LicenseNo)
|
|
2907
|
-
this.LicenseNo = obj;
|
|
2908
|
-
}
|
|
2909
|
-
|
|
2910
|
-
if (params.ExpiresDate) {
|
|
2911
|
-
let obj = new TextDetectionResult();
|
|
2912
|
-
obj.deserialize(params.ExpiresDate)
|
|
2913
|
-
this.ExpiresDate = obj;
|
|
2914
|
-
}
|
|
2915
|
-
|
|
2916
|
-
if (params.AgencyCode) {
|
|
2917
|
-
let obj = new TextDetectionResult();
|
|
2918
|
-
obj.deserialize(params.AgencyCode)
|
|
2919
|
-
this.AgencyCode = obj;
|
|
2920
|
-
}
|
|
2921
|
-
|
|
2922
|
-
if (params.Birthday) {
|
|
2923
|
-
let obj = new TextDetectionResult();
|
|
2924
|
-
obj.deserialize(params.Birthday)
|
|
2925
|
-
this.Birthday = obj;
|
|
2926
|
-
}
|
|
2927
|
-
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
2802
|
+
this.ImageBase64 = 'ImageBase64' in params ? params.ImageBase64 : null;
|
|
2803
|
+
this.ImageUrl = 'ImageUrl' in params ? params.ImageUrl : null;
|
|
2804
|
+
this.ReturnHeadImage = 'ReturnHeadImage' in params ? params.ReturnHeadImage : null;
|
|
2928
2805
|
|
|
2929
2806
|
}
|
|
2930
2807
|
}
|
|
@@ -5940,6 +5817,146 @@ class TaxiTicket extends AbstractModel {
|
|
|
5940
5817
|
}
|
|
5941
5818
|
}
|
|
5942
5819
|
|
|
5820
|
+
/**
|
|
5821
|
+
* RecognizeBrazilRNMOCR response structure.
|
|
5822
|
+
* @class
|
|
5823
|
+
*/
|
|
5824
|
+
class RecognizeBrazilRNMOCRResponse extends AbstractModel {
|
|
5825
|
+
constructor(){
|
|
5826
|
+
super();
|
|
5827
|
+
|
|
5828
|
+
/**
|
|
5829
|
+
* Last name
|
|
5830
|
+
* @type {string || null}
|
|
5831
|
+
*/
|
|
5832
|
+
this.SOBRENOME = null;
|
|
5833
|
+
|
|
5834
|
+
/**
|
|
5835
|
+
* First name
|
|
5836
|
+
* @type {string || null}
|
|
5837
|
+
*/
|
|
5838
|
+
this.NOME = null;
|
|
5839
|
+
|
|
5840
|
+
/**
|
|
5841
|
+
* Date of Birth
|
|
5842
|
+
* @type {string || null}
|
|
5843
|
+
*/
|
|
5844
|
+
this.DATADENASCIMENTO = null;
|
|
5845
|
+
|
|
5846
|
+
/**
|
|
5847
|
+
* Gender
|
|
5848
|
+
* @type {string || null}
|
|
5849
|
+
*/
|
|
5850
|
+
this.SEXO = null;
|
|
5851
|
+
|
|
5852
|
+
/**
|
|
5853
|
+
* Parents name
|
|
5854
|
+
* @type {string || null}
|
|
5855
|
+
*/
|
|
5856
|
+
this.MEMBERSHIP = null;
|
|
5857
|
+
|
|
5858
|
+
/**
|
|
5859
|
+
* Nationality
|
|
5860
|
+
* @type {string || null}
|
|
5861
|
+
*/
|
|
5862
|
+
this.NACIONALIDADE = null;
|
|
5863
|
+
|
|
5864
|
+
/**
|
|
5865
|
+
* Expiry Date
|
|
5866
|
+
* @type {string || null}
|
|
5867
|
+
*/
|
|
5868
|
+
this.VALIDADE = null;
|
|
5869
|
+
|
|
5870
|
+
/**
|
|
5871
|
+
* RNM
|
|
5872
|
+
* @type {string || null}
|
|
5873
|
+
*/
|
|
5874
|
+
this.RNM = null;
|
|
5875
|
+
|
|
5876
|
+
/**
|
|
5877
|
+
* CPF
|
|
5878
|
+
* @type {string || null}
|
|
5879
|
+
*/
|
|
5880
|
+
this.CPF = null;
|
|
5881
|
+
|
|
5882
|
+
/**
|
|
5883
|
+
*
|
|
5884
|
+
* @type {string || null}
|
|
5885
|
+
*/
|
|
5886
|
+
this.CLASSIFICATION = null;
|
|
5887
|
+
|
|
5888
|
+
/**
|
|
5889
|
+
*
|
|
5890
|
+
* @type {string || null}
|
|
5891
|
+
*/
|
|
5892
|
+
this.PRAZODERESIDENCIA = null;
|
|
5893
|
+
|
|
5894
|
+
/**
|
|
5895
|
+
* Issue Date
|
|
5896
|
+
* @type {string || null}
|
|
5897
|
+
*/
|
|
5898
|
+
this.ISSUANCE = null;
|
|
5899
|
+
|
|
5900
|
+
/**
|
|
5901
|
+
* Legal basis
|
|
5902
|
+
* @type {string || null}
|
|
5903
|
+
*/
|
|
5904
|
+
this.AMPAROLEGAL = null;
|
|
5905
|
+
|
|
5906
|
+
/**
|
|
5907
|
+
* Machine readable zone code
|
|
5908
|
+
* @type {string || null}
|
|
5909
|
+
*/
|
|
5910
|
+
this.MRZ = null;
|
|
5911
|
+
|
|
5912
|
+
/**
|
|
5913
|
+
* PortraitImage
|
|
5914
|
+
* @type {string || null}
|
|
5915
|
+
*/
|
|
5916
|
+
this.PortraitImage = null;
|
|
5917
|
+
|
|
5918
|
+
/**
|
|
5919
|
+
* PortraitImage(Back)
|
|
5920
|
+
* @type {string || null}
|
|
5921
|
+
*/
|
|
5922
|
+
this.PortraitImageBack = null;
|
|
5923
|
+
|
|
5924
|
+
/**
|
|
5925
|
+
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
|
|
5926
|
+
* @type {string || null}
|
|
5927
|
+
*/
|
|
5928
|
+
this.RequestId = null;
|
|
5929
|
+
|
|
5930
|
+
}
|
|
5931
|
+
|
|
5932
|
+
/**
|
|
5933
|
+
* @private
|
|
5934
|
+
*/
|
|
5935
|
+
deserialize(params) {
|
|
5936
|
+
if (!params) {
|
|
5937
|
+
return;
|
|
5938
|
+
}
|
|
5939
|
+
this.SOBRENOME = 'SOBRENOME' in params ? params.SOBRENOME : null;
|
|
5940
|
+
this.NOME = 'NOME' in params ? params.NOME : null;
|
|
5941
|
+
this.DATADENASCIMENTO = 'DATADENASCIMENTO' in params ? params.DATADENASCIMENTO : null;
|
|
5942
|
+
this.SEXO = 'SEXO' in params ? params.SEXO : null;
|
|
5943
|
+
this.MEMBERSHIP = 'MEMBERSHIP' in params ? params.MEMBERSHIP : null;
|
|
5944
|
+
this.NACIONALIDADE = 'NACIONALIDADE' in params ? params.NACIONALIDADE : null;
|
|
5945
|
+
this.VALIDADE = 'VALIDADE' in params ? params.VALIDADE : null;
|
|
5946
|
+
this.RNM = 'RNM' in params ? params.RNM : null;
|
|
5947
|
+
this.CPF = 'CPF' in params ? params.CPF : null;
|
|
5948
|
+
this.CLASSIFICATION = 'CLASSIFICATION' in params ? params.CLASSIFICATION : null;
|
|
5949
|
+
this.PRAZODERESIDENCIA = 'PRAZODERESIDENCIA' in params ? params.PRAZODERESIDENCIA : null;
|
|
5950
|
+
this.ISSUANCE = 'ISSUANCE' in params ? params.ISSUANCE : null;
|
|
5951
|
+
this.AMPAROLEGAL = 'AMPAROLEGAL' in params ? params.AMPAROLEGAL : null;
|
|
5952
|
+
this.MRZ = 'MRZ' in params ? params.MRZ : null;
|
|
5953
|
+
this.PortraitImage = 'PortraitImage' in params ? params.PortraitImage : null;
|
|
5954
|
+
this.PortraitImageBack = 'PortraitImageBack' in params ? params.PortraitImageBack : null;
|
|
5955
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
5956
|
+
|
|
5957
|
+
}
|
|
5958
|
+
}
|
|
5959
|
+
|
|
5943
5960
|
/**
|
|
5944
5961
|
* LicensePlateOCR request structure.
|
|
5945
5962
|
* @class
|
|
@@ -6080,6 +6097,62 @@ Valid values:
|
|
|
6080
6097
|
}
|
|
6081
6098
|
}
|
|
6082
6099
|
|
|
6100
|
+
/**
|
|
6101
|
+
* RecognizeBrazilRNMOCR request structure.
|
|
6102
|
+
* @class
|
|
6103
|
+
*/
|
|
6104
|
+
class RecognizeBrazilRNMOCRRequest extends AbstractModel {
|
|
6105
|
+
constructor(){
|
|
6106
|
+
super();
|
|
6107
|
+
|
|
6108
|
+
/**
|
|
6109
|
+
* Base64 value of the image. Supported image formats: PNG, JPG, JPEG, GIF format is not supported yet. Supported image size: The downloaded image should not exceed 7M after Base64 encoding. Image downloading time should not exceed 3 seconds.
|
|
6110
|
+
* @type {string || null}
|
|
6111
|
+
*/
|
|
6112
|
+
this.ImageBase64 = null;
|
|
6113
|
+
|
|
6114
|
+
/**
|
|
6115
|
+
* URL address of the image. Supported image formats: PNG, JPG, JPEG, GIF format is not supported yet. Supported image size: The downloaded image should not exceed 7M after Base64 encoding. Image download time should not exceed 3 seconds. URLs of images stored in Tencent Cloud can guarantee higher download speed and stability. It is recommended that images be stored in Tencent Cloud. The speed and stability of URLs not stored in Tencent Cloud may be affected to a certain extent.
|
|
6116
|
+
* @type {string || null}
|
|
6117
|
+
*/
|
|
6118
|
+
this.ImageUrl = null;
|
|
6119
|
+
|
|
6120
|
+
/**
|
|
6121
|
+
* Base64 value of the image on the back of the card. Supported image formats: PNG, JPG, JPEG, GIF format is not supported yet. Supported image size: The downloaded image should not exceed 7M after Base64 encoding. Image download time should not exceed 3 seconds. An ImageUrl and ImageBase64 must be provided. If both are provided, only ImageUrl will be used.
|
|
6122
|
+
* @type {string || null}
|
|
6123
|
+
*/
|
|
6124
|
+
this.BackImageBase64 = null;
|
|
6125
|
+
|
|
6126
|
+
/**
|
|
6127
|
+
* The URL address of the image on the back of the card. Supported image formats: PNG, JPG, JPEG, GIF format is not supported yet. Supported image size: The downloaded image does not exceed 7M after Base64 encoding. The image download time does not exceed 3 seconds. The URL of the image stored in Tencent Cloud can ensure higher download speed and stability. It is recommended to store the image in Tencent Cloud. The speed and stability of the URL stored outside Tencent Cloud may be affected to a certain extent.
|
|
6128
|
+
* @type {string || null}
|
|
6129
|
+
*/
|
|
6130
|
+
this.BackImageUrl = null;
|
|
6131
|
+
|
|
6132
|
+
/**
|
|
6133
|
+
* Whether to return portrait photos.
|
|
6134
|
+
* @type {boolean || null}
|
|
6135
|
+
*/
|
|
6136
|
+
this.ReturnHeadImage = null;
|
|
6137
|
+
|
|
6138
|
+
}
|
|
6139
|
+
|
|
6140
|
+
/**
|
|
6141
|
+
* @private
|
|
6142
|
+
*/
|
|
6143
|
+
deserialize(params) {
|
|
6144
|
+
if (!params) {
|
|
6145
|
+
return;
|
|
6146
|
+
}
|
|
6147
|
+
this.ImageBase64 = 'ImageBase64' in params ? params.ImageBase64 : null;
|
|
6148
|
+
this.ImageUrl = 'ImageUrl' in params ? params.ImageUrl : null;
|
|
6149
|
+
this.BackImageBase64 = 'BackImageBase64' in params ? params.BackImageBase64 : null;
|
|
6150
|
+
this.BackImageUrl = 'BackImageUrl' in params ? params.BackImageUrl : null;
|
|
6151
|
+
this.ReturnHeadImage = 'ReturnHeadImage' in params ? params.ReturnHeadImage : null;
|
|
6152
|
+
|
|
6153
|
+
}
|
|
6154
|
+
}
|
|
6155
|
+
|
|
6083
6156
|
/**
|
|
6084
6157
|
* RecognizeBrazilIDCardOCR response structure.
|
|
6085
6158
|
* @class
|
|
@@ -10561,37 +10634,90 @@ class RecognizeThaiPinkCardResponse extends AbstractModel {
|
|
|
10561
10634
|
}
|
|
10562
10635
|
|
|
10563
10636
|
/**
|
|
10564
|
-
*
|
|
10637
|
+
* RecognizePhilippinesDrivingLicenseOCR response structure.
|
|
10565
10638
|
* @class
|
|
10566
10639
|
*/
|
|
10567
|
-
class
|
|
10640
|
+
class RecognizePhilippinesDrivingLicenseOCRResponse extends AbstractModel {
|
|
10568
10641
|
constructor(){
|
|
10569
10642
|
super();
|
|
10570
10643
|
|
|
10571
10644
|
/**
|
|
10572
|
-
* The Base64-encoded
|
|
10573
|
-
|
|
10574
|
-
Supported image size: The downloaded image after Base64 encoding can be up to 7 MB. The download time of the image cannot exceed 3s.
|
|
10575
|
-
Either `ImageUrl` or `ImageBase64` of the image must be provided. If both are provided, only `ImageUrl` is used.
|
|
10576
|
-
* @type {string || null}
|
|
10645
|
+
* The Base64-encoded identity photo.
|
|
10646
|
+
* @type {TextDetectionResult || null}
|
|
10577
10647
|
*/
|
|
10578
|
-
this.
|
|
10648
|
+
this.HeadPortrait = null;
|
|
10579
10649
|
|
|
10580
10650
|
/**
|
|
10581
|
-
* The
|
|
10582
|
-
|
|
10583
|
-
Supported image size: The downloaded image after Base64 encoding can be up to 7 MB. The download time of the image cannot exceed 3s.
|
|
10584
|
-
We recommend that you store the image in Tencent Cloud for higher download speed and stability.
|
|
10585
|
-
The download speed and stability of non-Tencent Cloud URLs may be low.
|
|
10586
|
-
* @type {string || null}
|
|
10651
|
+
* The full name.
|
|
10652
|
+
* @type {TextDetectionResult || null}
|
|
10587
10653
|
*/
|
|
10588
|
-
this.
|
|
10654
|
+
this.Name = null;
|
|
10589
10655
|
|
|
10590
10656
|
/**
|
|
10591
|
-
*
|
|
10592
|
-
* @type {
|
|
10657
|
+
* The last name.
|
|
10658
|
+
* @type {TextDetectionResult || null}
|
|
10593
10659
|
*/
|
|
10594
|
-
this.
|
|
10660
|
+
this.LastName = null;
|
|
10661
|
+
|
|
10662
|
+
/**
|
|
10663
|
+
* The first name.
|
|
10664
|
+
* @type {TextDetectionResult || null}
|
|
10665
|
+
*/
|
|
10666
|
+
this.FirstName = null;
|
|
10667
|
+
|
|
10668
|
+
/**
|
|
10669
|
+
* The middle name.
|
|
10670
|
+
* @type {TextDetectionResult || null}
|
|
10671
|
+
*/
|
|
10672
|
+
this.MiddleName = null;
|
|
10673
|
+
|
|
10674
|
+
/**
|
|
10675
|
+
* The nationality.
|
|
10676
|
+
* @type {TextDetectionResult || null}
|
|
10677
|
+
*/
|
|
10678
|
+
this.Nationality = null;
|
|
10679
|
+
|
|
10680
|
+
/**
|
|
10681
|
+
* The gender.
|
|
10682
|
+
* @type {TextDetectionResult || null}
|
|
10683
|
+
*/
|
|
10684
|
+
this.Sex = null;
|
|
10685
|
+
|
|
10686
|
+
/**
|
|
10687
|
+
* The address.
|
|
10688
|
+
* @type {TextDetectionResult || null}
|
|
10689
|
+
*/
|
|
10690
|
+
this.Address = null;
|
|
10691
|
+
|
|
10692
|
+
/**
|
|
10693
|
+
* The license No.
|
|
10694
|
+
* @type {TextDetectionResult || null}
|
|
10695
|
+
*/
|
|
10696
|
+
this.LicenseNo = null;
|
|
10697
|
+
|
|
10698
|
+
/**
|
|
10699
|
+
* The expiration date.
|
|
10700
|
+
* @type {TextDetectionResult || null}
|
|
10701
|
+
*/
|
|
10702
|
+
this.ExpiresDate = null;
|
|
10703
|
+
|
|
10704
|
+
/**
|
|
10705
|
+
* The agency code.
|
|
10706
|
+
* @type {TextDetectionResult || null}
|
|
10707
|
+
*/
|
|
10708
|
+
this.AgencyCode = null;
|
|
10709
|
+
|
|
10710
|
+
/**
|
|
10711
|
+
* The date of birth.
|
|
10712
|
+
* @type {TextDetectionResult || null}
|
|
10713
|
+
*/
|
|
10714
|
+
this.Birthday = null;
|
|
10715
|
+
|
|
10716
|
+
/**
|
|
10717
|
+
* The unique request ID, which is returned for each request. RequestId is required for locating a problem.
|
|
10718
|
+
* @type {string || null}
|
|
10719
|
+
*/
|
|
10720
|
+
this.RequestId = null;
|
|
10595
10721
|
|
|
10596
10722
|
}
|
|
10597
10723
|
|
|
@@ -10602,9 +10728,79 @@ The download speed and stability of non-Tencent Cloud URLs may be low.
|
|
|
10602
10728
|
if (!params) {
|
|
10603
10729
|
return;
|
|
10604
10730
|
}
|
|
10605
|
-
|
|
10606
|
-
|
|
10607
|
-
|
|
10731
|
+
|
|
10732
|
+
if (params.HeadPortrait) {
|
|
10733
|
+
let obj = new TextDetectionResult();
|
|
10734
|
+
obj.deserialize(params.HeadPortrait)
|
|
10735
|
+
this.HeadPortrait = obj;
|
|
10736
|
+
}
|
|
10737
|
+
|
|
10738
|
+
if (params.Name) {
|
|
10739
|
+
let obj = new TextDetectionResult();
|
|
10740
|
+
obj.deserialize(params.Name)
|
|
10741
|
+
this.Name = obj;
|
|
10742
|
+
}
|
|
10743
|
+
|
|
10744
|
+
if (params.LastName) {
|
|
10745
|
+
let obj = new TextDetectionResult();
|
|
10746
|
+
obj.deserialize(params.LastName)
|
|
10747
|
+
this.LastName = obj;
|
|
10748
|
+
}
|
|
10749
|
+
|
|
10750
|
+
if (params.FirstName) {
|
|
10751
|
+
let obj = new TextDetectionResult();
|
|
10752
|
+
obj.deserialize(params.FirstName)
|
|
10753
|
+
this.FirstName = obj;
|
|
10754
|
+
}
|
|
10755
|
+
|
|
10756
|
+
if (params.MiddleName) {
|
|
10757
|
+
let obj = new TextDetectionResult();
|
|
10758
|
+
obj.deserialize(params.MiddleName)
|
|
10759
|
+
this.MiddleName = obj;
|
|
10760
|
+
}
|
|
10761
|
+
|
|
10762
|
+
if (params.Nationality) {
|
|
10763
|
+
let obj = new TextDetectionResult();
|
|
10764
|
+
obj.deserialize(params.Nationality)
|
|
10765
|
+
this.Nationality = obj;
|
|
10766
|
+
}
|
|
10767
|
+
|
|
10768
|
+
if (params.Sex) {
|
|
10769
|
+
let obj = new TextDetectionResult();
|
|
10770
|
+
obj.deserialize(params.Sex)
|
|
10771
|
+
this.Sex = obj;
|
|
10772
|
+
}
|
|
10773
|
+
|
|
10774
|
+
if (params.Address) {
|
|
10775
|
+
let obj = new TextDetectionResult();
|
|
10776
|
+
obj.deserialize(params.Address)
|
|
10777
|
+
this.Address = obj;
|
|
10778
|
+
}
|
|
10779
|
+
|
|
10780
|
+
if (params.LicenseNo) {
|
|
10781
|
+
let obj = new TextDetectionResult();
|
|
10782
|
+
obj.deserialize(params.LicenseNo)
|
|
10783
|
+
this.LicenseNo = obj;
|
|
10784
|
+
}
|
|
10785
|
+
|
|
10786
|
+
if (params.ExpiresDate) {
|
|
10787
|
+
let obj = new TextDetectionResult();
|
|
10788
|
+
obj.deserialize(params.ExpiresDate)
|
|
10789
|
+
this.ExpiresDate = obj;
|
|
10790
|
+
}
|
|
10791
|
+
|
|
10792
|
+
if (params.AgencyCode) {
|
|
10793
|
+
let obj = new TextDetectionResult();
|
|
10794
|
+
obj.deserialize(params.AgencyCode)
|
|
10795
|
+
this.AgencyCode = obj;
|
|
10796
|
+
}
|
|
10797
|
+
|
|
10798
|
+
if (params.Birthday) {
|
|
10799
|
+
let obj = new TextDetectionResult();
|
|
10800
|
+
obj.deserialize(params.Birthday)
|
|
10801
|
+
this.Birthday = obj;
|
|
10802
|
+
}
|
|
10803
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
10608
10804
|
|
|
10609
10805
|
}
|
|
10610
10806
|
}
|
|
@@ -10649,7 +10845,7 @@ module.exports = {
|
|
|
10649
10845
|
GeneralBasicOCRResponse: GeneralBasicOCRResponse,
|
|
10650
10846
|
PermitOCRRequest: PermitOCRRequest,
|
|
10651
10847
|
OtherInvoice: OtherInvoice,
|
|
10652
|
-
|
|
10848
|
+
RecognizePhilippinesUMIDOCRRequest: RecognizePhilippinesUMIDOCRRequest,
|
|
10653
10849
|
BankCardOCRRequest: BankCardOCRRequest,
|
|
10654
10850
|
RecognizePhilippinesSssIDOCRRequest: RecognizePhilippinesSssIDOCRRequest,
|
|
10655
10851
|
Key: Key,
|
|
@@ -10674,8 +10870,10 @@ module.exports = {
|
|
|
10674
10870
|
PassportRecognizeInfos: PassportRecognizeInfos,
|
|
10675
10871
|
RecognizeSingaporeIDCardOCRRequest: RecognizeSingaporeIDCardOCRRequest,
|
|
10676
10872
|
TaxiTicket: TaxiTicket,
|
|
10873
|
+
RecognizeBrazilRNMOCRResponse: RecognizeBrazilRNMOCRResponse,
|
|
10677
10874
|
LicensePlateOCRRequest: LicensePlateOCRRequest,
|
|
10678
10875
|
GeneralBasicOCRRequest: GeneralBasicOCRRequest,
|
|
10876
|
+
RecognizeBrazilRNMOCRRequest: RecognizeBrazilRNMOCRRequest,
|
|
10679
10877
|
RecognizeBrazilIDCardOCRResponse: RecognizeBrazilIDCardOCRResponse,
|
|
10680
10878
|
RecognizeBrazilRNEOCRRequest: RecognizeBrazilRNEOCRRequest,
|
|
10681
10879
|
VatElectronicInfo: VatElectronicInfo,
|
|
@@ -10723,6 +10921,6 @@ module.exports = {
|
|
|
10723
10921
|
RecognizeThaiPinkCardRequest: RecognizeThaiPinkCardRequest,
|
|
10724
10922
|
BankCardOCRResponse: BankCardOCRResponse,
|
|
10725
10923
|
RecognizeThaiPinkCardResponse: RecognizeThaiPinkCardResponse,
|
|
10726
|
-
|
|
10924
|
+
RecognizePhilippinesDrivingLicenseOCRResponse: RecognizePhilippinesDrivingLicenseOCRResponse,
|
|
10727
10925
|
|
|
10728
10926
|
}
|
|
@@ -55,7 +55,7 @@ const RecognizeGeneralInvoiceRequest = models.RecognizeGeneralInvoiceRequest;
|
|
|
55
55
|
const GeneralBasicOCRResponse = models.GeneralBasicOCRResponse;
|
|
56
56
|
const PermitOCRRequest = models.PermitOCRRequest;
|
|
57
57
|
const OtherInvoice = models.OtherInvoice;
|
|
58
|
-
const
|
|
58
|
+
const RecognizePhilippinesUMIDOCRRequest = models.RecognizePhilippinesUMIDOCRRequest;
|
|
59
59
|
const BankCardOCRRequest = models.BankCardOCRRequest;
|
|
60
60
|
const RecognizePhilippinesSssIDOCRRequest = models.RecognizePhilippinesSssIDOCRRequest;
|
|
61
61
|
const Key = models.Key;
|
|
@@ -80,8 +80,10 @@ const TableOCRRequest = models.TableOCRRequest;
|
|
|
80
80
|
const PassportRecognizeInfos = models.PassportRecognizeInfos;
|
|
81
81
|
const RecognizeSingaporeIDCardOCRRequest = models.RecognizeSingaporeIDCardOCRRequest;
|
|
82
82
|
const TaxiTicket = models.TaxiTicket;
|
|
83
|
+
const RecognizeBrazilRNMOCRResponse = models.RecognizeBrazilRNMOCRResponse;
|
|
83
84
|
const LicensePlateOCRRequest = models.LicensePlateOCRRequest;
|
|
84
85
|
const GeneralBasicOCRRequest = models.GeneralBasicOCRRequest;
|
|
86
|
+
const RecognizeBrazilRNMOCRRequest = models.RecognizeBrazilRNMOCRRequest;
|
|
85
87
|
const RecognizeBrazilIDCardOCRResponse = models.RecognizeBrazilIDCardOCRResponse;
|
|
86
88
|
const RecognizeBrazilRNEOCRRequest = models.RecognizeBrazilRNEOCRRequest;
|
|
87
89
|
const VatElectronicInfo = models.VatElectronicInfo;
|
|
@@ -129,7 +131,7 @@ const RecognizePhilippinesTinIDOCRRequest = models.RecognizePhilippinesTinIDOCRR
|
|
|
129
131
|
const RecognizeThaiPinkCardRequest = models.RecognizeThaiPinkCardRequest;
|
|
130
132
|
const BankCardOCRResponse = models.BankCardOCRResponse;
|
|
131
133
|
const RecognizeThaiPinkCardResponse = models.RecognizeThaiPinkCardResponse;
|
|
132
|
-
const
|
|
134
|
+
const RecognizePhilippinesDrivingLicenseOCRResponse = models.RecognizePhilippinesDrivingLicenseOCRResponse;
|
|
133
135
|
|
|
134
136
|
|
|
135
137
|
/**
|
|
@@ -156,6 +158,17 @@ A maximum of 5 requests can be initiated per second for this API.
|
|
|
156
158
|
this.request("RecognizeThaiPinkCard", req, resp, cb);
|
|
157
159
|
}
|
|
158
160
|
|
|
161
|
+
/**
|
|
162
|
+
* This API is used to recognize a Philippine SSSID/UMID card.
|
|
163
|
+
* @param {RecognizePhilippinesSssIDOCRRequest} req
|
|
164
|
+
* @param {function(string, RecognizePhilippinesSssIDOCRResponse):void} cb
|
|
165
|
+
* @public
|
|
166
|
+
*/
|
|
167
|
+
RecognizePhilippinesSssIDOCR(req, cb) {
|
|
168
|
+
let resp = new RecognizePhilippinesSssIDOCRResponse();
|
|
169
|
+
this.request("RecognizePhilippinesSssIDOCR", req, resp, cb);
|
|
170
|
+
}
|
|
171
|
+
|
|
159
172
|
/**
|
|
160
173
|
* This API is used to recognize all fields on the front and back sides of a second-generation resident identity card for the Chinese mainland: name, gender, ethnicity, date of birth, domicile, identification number, issuing authority, and validity period, with a recognition accuracy of over 99%.
|
|
161
174
|
|
|
@@ -423,17 +436,6 @@ A maximum of 10 requests can be initiated per second for this API.
|
|
|
423
436
|
this.request("LicensePlateOCR", req, resp, cb);
|
|
424
437
|
}
|
|
425
438
|
|
|
426
|
-
/**
|
|
427
|
-
* This API is used to recognize a South Korean ID card.
|
|
428
|
-
* @param {RecognizeKoreanIDCardOCRRequest} req
|
|
429
|
-
* @param {function(string, RecognizeKoreanIDCardOCRResponse):void} cb
|
|
430
|
-
* @public
|
|
431
|
-
*/
|
|
432
|
-
RecognizeKoreanIDCardOCR(req, cb) {
|
|
433
|
-
let resp = new RecognizeKoreanIDCardOCRResponse();
|
|
434
|
-
this.request("RecognizeKoreanIDCardOCR", req, resp, cb);
|
|
435
|
-
}
|
|
436
|
-
|
|
437
439
|
/**
|
|
438
440
|
* This interface supports the identification of all fields on the front and back of the second-generation ID card for mainland Chinese residents.Including name, gender, ethnicity, date of birth, address, citizen ID number, issuing authority, and validity period, the identification accuracy reaches more than 99%.In addition, this interface also supports a variety of value-added capabilities to meet the needs of different scenarios. Such as the cropping function of ID card photos and portrait photos, and also has 5 alarm functions.
|
|
439
441
|
As shown in the table below. <table style="width:650px"> <thead> <tr> <th width="150">Value-added ability</th> <th width="500">Ability items</th> </tr> </thead> <tbody> <tr> <td rowspan="9">Alarm function</td> </tr> <tr> <td>ID card copy warning</td> </tr> <tr> <td>ID card copy warning</td> </tr> <tr> <td>Alarm for occlusion in the ID card frame</td> </tr> <tr> <td>ID card reflective warning</td> </tr> <tr> <td>Blurry picture warning</td> </tr> </tbody> </table> Default interface request frequency limit: 20 times/second
|
|
@@ -494,6 +496,17 @@ The API request rate is limited to 20 requests/sec by default.
|
|
|
494
496
|
this.request("RecognizePhilippinesUMIDOCR", req, resp, cb);
|
|
495
497
|
}
|
|
496
498
|
|
|
499
|
+
/**
|
|
500
|
+
* This interface supports identification of the front and back of Brazilian RNM license. The default interface request frequency limit is 5 times per second.
|
|
501
|
+
* @param {RecognizeBrazilRNMOCRRequest} req
|
|
502
|
+
* @param {function(string, RecognizeBrazilRNMOCRResponse):void} cb
|
|
503
|
+
* @public
|
|
504
|
+
*/
|
|
505
|
+
RecognizeBrazilRNMOCR(req, cb) {
|
|
506
|
+
let resp = new RecognizeBrazilRNMOCRResponse();
|
|
507
|
+
this.request("RecognizeBrazilRNMOCR", req, resp, cb);
|
|
508
|
+
}
|
|
509
|
+
|
|
497
510
|
/**
|
|
498
511
|
* This interface supports the identification of all fields on the front side of ID card for Singapore residents.The identification accuracy reaches more than 99%.In addition, this interface also supports a variety of value-added capabilities to meet the needs of different scenarios. Such as the cropping function of ID card photos and portrait photos, and also has 5 alarm functions.
|
|
499
512
|
As shown in the table below. <table style="width:650px"> <thead> <tr> <th width="150">Value-added ability</th> <th width="500">Ability items</th> </tr> </thead> <tbody> <tr> <td rowspan="9">Alarm function</td> </tr> <tr> <td>ID card copy warning</td> </tr> <tr> <td>ID card copy warning</td> </tr> <tr> <td>Alarm for occlusion in the ID card frame</td> </tr> <tr> <td>ID card reflective warning</td> </tr> <tr> <td>Blurry picture warning</td> </tr> </tbody> </table> Default interface request frequency limit: 20 times/second
|
|
@@ -533,14 +546,14 @@ A maximum of 20 requests can be initiated per second for this API.
|
|
|
533
546
|
}
|
|
534
547
|
|
|
535
548
|
/**
|
|
536
|
-
* This API is used to recognize a
|
|
537
|
-
* @param {
|
|
538
|
-
* @param {function(string,
|
|
549
|
+
* This API is used to recognize a South Korean ID card.
|
|
550
|
+
* @param {RecognizeKoreanIDCardOCRRequest} req
|
|
551
|
+
* @param {function(string, RecognizeKoreanIDCardOCRResponse):void} cb
|
|
539
552
|
* @public
|
|
540
553
|
*/
|
|
541
|
-
|
|
542
|
-
let resp = new
|
|
543
|
-
this.request("
|
|
554
|
+
RecognizeKoreanIDCardOCR(req, cb) {
|
|
555
|
+
let resp = new RecognizeKoreanIDCardOCRResponse();
|
|
556
|
+
this.request("RecognizeKoreanIDCardOCR", req, resp, cb);
|
|
544
557
|
}
|
|
545
558
|
|
|
546
559
|
/**
|
|
@@ -4233,11 +4233,11 @@ class InstanceLifeDetailDto extends AbstractModel {
|
|
|
4233
4233
|
|
|
4234
4234
|
/**
|
|
4235
4235
|
* Indicates the status of an instance.
|
|
4236
|
-
-Indicates waiting for event.
|
|
4236
|
+
-[0] Indicates waiting for event.
|
|
4237
4237
|
-[12] indicates waiting for upstream.
|
|
4238
4238
|
-[6, 7, 9, 10, 18] indicates awaiting execution.
|
|
4239
|
-
-1, 19, 22
|
|
4240
|
-
-21
|
|
4239
|
+
-[1, 19, 22] indicate running.
|
|
4240
|
+
-[21] skip running.
|
|
4241
4241
|
-[3] indicates retry on failure.
|
|
4242
4242
|
-[8, 4, 5, 13] indicates a failure.
|
|
4243
4243
|
-[2] indicates a success.
|
|
@@ -4256,14 +4256,14 @@ Note: This field may return null, indicating that no valid value can be obtained
|
|
|
4256
4256
|
/**
|
|
4257
4257
|
* Instance lifecycle phase status.
|
|
4258
4258
|
|
|
4259
|
-
-WAIT_UPSTREAM indicates waiting for event
|
|
4260
|
-
-WAIT_RUN indicates
|
|
4261
|
-
-RUNNING indicates
|
|
4262
|
-
-COMPLETE indicates
|
|
4263
|
-
-FAILED indicates
|
|
4264
|
-
-EXPIRED indicates
|
|
4265
|
-
-SKIP_RUNNING indicates
|
|
4266
|
-
-HISTORY indicates compatibility with historical instances.
|
|
4259
|
+
-WAIT_UPSTREAM indicates waiting for an event or upstream status.
|
|
4260
|
+
-WAIT_RUN indicates waiting for running status.
|
|
4261
|
+
-RUNNING indicates the running state.
|
|
4262
|
+
-COMPLETE indicates terminal state - completed.
|
|
4263
|
+
-FAILED indicates terminal state - retry after failure.
|
|
4264
|
+
-EXPIRED indicates terminal state - failure.
|
|
4265
|
+
-SKIP_RUNNING indicates terminal state - a branch skipped by the upstream branch node.
|
|
4266
|
+
-HISTORY indicates compatibility with historical instances before march 30, 2024. no need to pay attention to this enumeration type for instances afterward.
|
|
4267
4267
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
4268
4268
|
* @type {string || null}
|
|
4269
4269
|
*/
|
|
@@ -6619,14 +6619,14 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
6619
6619
|
this.ExecutorGroupName = null;
|
|
6620
6620
|
|
|
6621
6621
|
/**
|
|
6622
|
-
*
|
|
6622
|
+
* Instance data time.
|
|
6623
6623
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
6624
6624
|
* @type {string || null}
|
|
6625
6625
|
*/
|
|
6626
6626
|
this.CurRunDate = null;
|
|
6627
6627
|
|
|
6628
6628
|
/**
|
|
6629
|
-
* Next
|
|
6629
|
+
* Next instance data time.
|
|
6630
6630
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
6631
6631
|
* @type {string || null}
|
|
6632
6632
|
*/
|
|
@@ -6654,7 +6654,9 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
6654
6654
|
this.TotalRunNum = null;
|
|
6655
6655
|
|
|
6656
6656
|
/**
|
|
6657
|
-
*
|
|
6657
|
+
* Instance lifetime number, which identifies one-time execution of the instance.
|
|
6658
|
+
|
|
6659
|
+
For example: the number of the first run of a periodic instance is 0. after the user reruns the instance later, the number of the second execution is 1.
|
|
6658
6660
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
6659
6661
|
* @type {number || null}
|
|
6660
6662
|
*/
|
|
@@ -6663,9 +6665,9 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
6663
6665
|
/**
|
|
6664
6666
|
* Instance type.
|
|
6665
6667
|
|
|
6666
|
-
-0 indicates
|
|
6667
|
-
-1 indicates
|
|
6668
|
-
-2 indicates
|
|
6668
|
+
-0 indicates Replenished Instance.
|
|
6669
|
+
-1 indicates Periodic Instance.
|
|
6670
|
+
-2 indicates Non-Periodic Instance.
|
|
6669
6671
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
6670
6672
|
* @type {number || null}
|
|
6671
6673
|
*/
|
|
@@ -6674,11 +6676,11 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
6674
6676
|
/**
|
|
6675
6677
|
* Indicates the status of an instance.
|
|
6676
6678
|
|
|
6677
|
-
-Indicates waiting for event.
|
|
6679
|
+
-[0] Indicates waiting for event.
|
|
6678
6680
|
-[12] indicates waiting for upstream.
|
|
6679
6681
|
-[6, 7, 9, 10, 18] indicates awaiting execution.
|
|
6680
|
-
-1, 19, 22 indicate running.
|
|
6681
|
-
-21: skip running.
|
|
6682
|
+
-[1, 19, 22] indicate running.
|
|
6683
|
+
-[21]: skip running.
|
|
6682
6684
|
-[3] indicates retry on failure.
|
|
6683
6685
|
-[8, 4, 5, 13] indicates a failure.
|
|
6684
6686
|
-[2] indicates a success.
|
|
@@ -6719,11 +6721,11 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
6719
6721
|
* Instance running trigger type.
|
|
6720
6722
|
|
|
6721
6723
|
-RERUN indicates rerunning.
|
|
6722
|
-
-ADDITION indicates
|
|
6724
|
+
-ADDITION indicates data replenishment.
|
|
6723
6725
|
-PERIODIC indicates a period.
|
|
6724
6726
|
-APERIODIC indicates non-periodic.
|
|
6725
6727
|
-RERUN_SKIP_RUN indicates re-run - empty run.
|
|
6726
|
-
-ADDITION_SKIP_RUN indicates a
|
|
6728
|
+
-ADDITION_SKIP_RUN indicates a data replenishment run - empty run.
|
|
6727
6729
|
-PERIODIC_SKIP_RUN indicates an empty run in a periodic cycle.
|
|
6728
6730
|
-APERIODIC_SKIP_RUN indicates a non-periodic empty run.
|
|
6729
6731
|
-MANUAL_TRIGGER indicates manual triggering.
|
|
@@ -10121,11 +10123,11 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
10121
10123
|
/**
|
|
10122
10124
|
* **Instance status**.
|
|
10123
10125
|
|
|
10124
|
-
-Indicates waiting for event.
|
|
10126
|
+
-[0] Indicates waiting for event.
|
|
10125
10127
|
-[12] indicates waiting for upstream.
|
|
10126
10128
|
-[6, 7, 9, 10, 18] indicates awaiting execution.
|
|
10127
|
-
-1, 19, 22 indicate running.
|
|
10128
|
-
-21
|
|
10129
|
+
-[1, 19, 22] indicate running.
|
|
10130
|
+
-[21] skip running.
|
|
10129
10131
|
-[3] indicates retry on failure.
|
|
10130
10132
|
-[8, 4, 5, 13] indicates a failure.
|
|
10131
10133
|
-[2] indicates a success.
|
|
@@ -10137,12 +10139,12 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
10137
10139
|
/**
|
|
10138
10140
|
* Instance running trigger type.
|
|
10139
10141
|
|
|
10140
|
-
-RERUN indicates
|
|
10142
|
+
-RERUN indicates data replenishment.
|
|
10141
10143
|
-ADDITION indicates supplementary recording.
|
|
10142
10144
|
-PERIODIC indicates a period.
|
|
10143
10145
|
-APERIODIC indicates non-periodic.
|
|
10144
10146
|
-RERUN_SKIP_RUN means empty run for re-run.
|
|
10145
|
-
-ADDITION_SKIP_RUN indicates
|
|
10147
|
+
-ADDITION_SKIP_RUN indicates data replenishment - empty run.
|
|
10146
10148
|
-PERIODIC_SKIP_RUN indicates an empty run in a periodic cycle.
|
|
10147
10149
|
-APERIODIC_SKIP_RUN indicates a non-periodic empty run.
|
|
10148
10150
|
-MANUAL_TRIGGER indicates manual triggering.
|
|
@@ -10211,7 +10213,10 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
10211
10213
|
this.LineCount = null;
|
|
10212
10214
|
|
|
10213
10215
|
/**
|
|
10214
|
-
*
|
|
10216
|
+
* Used when performing a paging query for logs. it has no specific business meaning.
|
|
10217
|
+
|
|
10218
|
+
Specifies that the value is null for the first query.
|
|
10219
|
+
Specifies that you can use the field value of ExtInfo in the returned information from the previous query for the second and subsequent queries.
|
|
10215
10220
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
10216
10221
|
* @type {string || null}
|
|
10217
10222
|
*/
|
|
@@ -20459,7 +20464,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
20459
20464
|
this.TaskCycleType = null;
|
|
20460
20465
|
|
|
20461
20466
|
/**
|
|
20462
|
-
*
|
|
20467
|
+
* Instance data time.
|
|
20463
20468
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
20464
20469
|
* @type {string || null}
|
|
20465
20470
|
*/
|
|
@@ -20501,7 +20506,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
20501
20506
|
/**
|
|
20502
20507
|
* Indicates the status of an instance.
|
|
20503
20508
|
|
|
20504
|
-
-Indicates waiting for event.
|
|
20509
|
+
-[0]Indicates waiting for event.
|
|
20505
20510
|
-[12] indicates waiting for upstream.
|
|
20506
20511
|
-[6, 7, 9, 10, 18] indicates awaiting execution.
|
|
20507
20512
|
-[1, 19, 22]: running.
|
|
@@ -22534,15 +22539,15 @@ class ListInstancesRequest extends AbstractModel {
|
|
|
22534
22539
|
this.ProjectId = null;
|
|
22535
22540
|
|
|
22536
22541
|
/**
|
|
22537
|
-
*
|
|
22538
|
-
|
|
22542
|
+
* Filter criteria for instance planned scheduling time.
|
|
22543
|
+
Specifies the start time for filtering. the time format is yyyy-MM-dd HH:MM:ss.
|
|
22539
22544
|
* @type {string || null}
|
|
22540
22545
|
*/
|
|
22541
22546
|
this.ScheduleTimeFrom = null;
|
|
22542
22547
|
|
|
22543
22548
|
/**
|
|
22544
|
-
*
|
|
22545
|
-
Filter expiration time. time format
|
|
22549
|
+
* Filter criteria for instance planned scheduling time.
|
|
22550
|
+
Filter expiration time. the time format is yyyy-MM-dd HH:MM:ss.
|
|
22546
22551
|
* @type {string || null}
|
|
22547
22552
|
*/
|
|
22548
22553
|
this.ScheduleTimeTo = null;
|
|
@@ -22562,12 +22567,12 @@ Use in conjunction with pageNumber and should not exceed 200. default value: 10.
|
|
|
22562
22567
|
this.PageSize = null;
|
|
22563
22568
|
|
|
22564
22569
|
/**
|
|
22565
|
-
*
|
|
22570
|
+
* Sorting field for query results.
|
|
22566
22571
|
|
|
22567
|
-
-SCHEDULE_DATE indicates the planned scheduling time.
|
|
22568
|
-
-START_TIME indicates the start execution time
|
|
22569
|
-
-END_TIME indicates the execution end time
|
|
22570
|
-
-COST_TIME indicates
|
|
22572
|
+
-SCHEDULE_DATE indicates sorting based on the planned scheduling time.
|
|
22573
|
+
-START_TIME indicates sorting by the instance's start execution time.
|
|
22574
|
+
-END_TIME indicates sorting based on the instance execution end time.
|
|
22575
|
+
-COST_TIME indicates sorting based on instance execution duration.
|
|
22571
22576
|
* @type {string || null}
|
|
22572
22577
|
*/
|
|
22573
22578
|
this.SortColumn = null;
|
|
@@ -22584,9 +22589,9 @@ Use in conjunction with pageNumber and should not exceed 200. default value: 10.
|
|
|
22584
22589
|
/**
|
|
22585
22590
|
* Instance type.
|
|
22586
22591
|
|
|
22587
|
-
-0 indicates
|
|
22588
|
-
-1 indicates
|
|
22589
|
-
-2 indicates
|
|
22592
|
+
-0 indicates Replenished Instance.
|
|
22593
|
+
-1 indicates Periodic Instance.
|
|
22594
|
+
-2 indicates Non-Periodic instance.
|
|
22590
22595
|
* @type {number || null}
|
|
22591
22596
|
*/
|
|
22592
22597
|
this.InstanceType = null;
|
|
@@ -22595,10 +22600,10 @@ Use in conjunction with pageNumber and should not exceed 200. default value: 10.
|
|
|
22595
22600
|
* Instance execution status.
|
|
22596
22601
|
Support filtering multiple items with an "or" relationship between conditions.
|
|
22597
22602
|
|
|
22598
|
-
-Indicates waiting for event.
|
|
22603
|
+
-[0] Indicates waiting for event.
|
|
22599
22604
|
-[12] indicates waiting for upstream.
|
|
22600
22605
|
-[6, 7, 9, 10, 18] indicates awaiting execution.
|
|
22601
|
-
-1, 19, 22 indicate running.
|
|
22606
|
+
-[1, 19, 22] indicate running.
|
|
22602
22607
|
-[21] indicates skipping running.
|
|
22603
22608
|
-[3] indicates retry on failure.
|
|
22604
22609
|
-[8, 4, 5, 13] indicates a failure.
|
|
@@ -22671,15 +22676,15 @@ The DescribeNormalIntegrationExecutorGroups API can be used to obtain the list o
|
|
|
22671
22676
|
this.ExecutorGroupIdList = null;
|
|
22672
22677
|
|
|
22673
22678
|
/**
|
|
22674
|
-
*
|
|
22675
|
-
|
|
22679
|
+
* Instance execution start time filter criteria.
|
|
22680
|
+
Specifies the start time for filtering. the time format is yyyy-MM-dd HH:MM:ss.
|
|
22676
22681
|
* @type {string || null}
|
|
22677
22682
|
*/
|
|
22678
22683
|
this.StartTimeFrom = null;
|
|
22679
22684
|
|
|
22680
22685
|
/**
|
|
22681
|
-
*
|
|
22682
|
-
Filter expiration time. time format
|
|
22686
|
+
* Instance execution start time filter criteria.
|
|
22687
|
+
Filter expiration time. the time format is yyyy-MM-dd HH:MM:ss.
|
|
22683
22688
|
* @type {string || null}
|
|
22684
22689
|
*/
|
|
22685
22690
|
this.StartTimeTo = null;
|
|
@@ -23446,11 +23451,11 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
23446
23451
|
/**
|
|
23447
23452
|
* Instance status.
|
|
23448
23453
|
|
|
23449
|
-
-Indicates waiting for event.
|
|
23454
|
+
-[0] Indicates waiting for event.
|
|
23450
23455
|
-[12] indicates waiting for upstream.
|
|
23451
23456
|
-[6, 7, 9, 10, 18] indicates awaiting execution.
|
|
23452
|
-
-1, 19, 22 indicate running.
|
|
23453
|
-
-21
|
|
23457
|
+
-[1, 19, 22] indicate running.
|
|
23458
|
+
-[21] skip running.
|
|
23454
23459
|
-[3] indicates retry on failure.
|
|
23455
23460
|
-[8, 4, 5, 13] indicates a failure.
|
|
23456
23461
|
-[2] indicates a success.
|
|
@@ -23460,7 +23465,9 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
23460
23465
|
this.InstanceState = null;
|
|
23461
23466
|
|
|
23462
23467
|
/**
|
|
23463
|
-
*
|
|
23468
|
+
* Instance lifetime number, which identifies one-time execution of the instance.
|
|
23469
|
+
|
|
23470
|
+
For example: the number of the first run of a periodic instance is 0. when the user reruns the instance later, the number of the second execution is 1.
|
|
23464
23471
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
23465
23472
|
* @type {number || null}
|
|
23466
23473
|
*/
|
|
@@ -23470,11 +23477,11 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
23470
23477
|
* Instance running trigger type.
|
|
23471
23478
|
|
|
23472
23479
|
-RERUN indicates rerunning.
|
|
23473
|
-
-ADDITION indicates
|
|
23480
|
+
-ADDITION indicates data replenishment.
|
|
23474
23481
|
-PERIODIC indicates a period.
|
|
23475
23482
|
-APERIODIC indicates non-periodic.
|
|
23476
23483
|
-RERUN_SKIP_RUN means empty run for re-run.
|
|
23477
|
-
-ADDITION_SKIP_RUN indicates
|
|
23484
|
+
-ADDITION_SKIP_RUN indicates data replenishment - empty run.
|
|
23478
23485
|
-PERIODIC_SKIP_RUN indicates an empty run in a periodic cycle.
|
|
23479
23486
|
-APERIODIC_SKIP_RUN indicates a non-periodic empty run.
|
|
23480
23487
|
-MANUAL_TRIGGER indicates manual triggering.
|
|
@@ -23508,6 +23515,8 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
23508
23515
|
|
|
23509
23516
|
/**
|
|
23510
23517
|
* Dispatch execution ID.
|
|
23518
|
+
The unified execution platform dispatches execution to the new version executor with a unique ID to identify a specific execution, while the existing old executors do not have this ID when dispatching execution.
|
|
23519
|
+
If it is unknown whether the executor version supports this ID, contact tencent cloud's operations team.
|
|
23511
23520
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
23512
23521
|
* @type {string || null}
|
|
23513
23522
|
*/
|
|
@@ -45516,7 +45525,9 @@ class GetInstanceLogRequest extends AbstractModel {
|
|
|
45516
45525
|
this.InstanceKey = null;
|
|
45517
45526
|
|
|
45518
45527
|
/**
|
|
45519
|
-
*
|
|
45528
|
+
* Instance lifetime number, which identifies one-time execution of the instance.
|
|
45529
|
+
|
|
45530
|
+
For example: the number of the first run of a periodic instance is 0. when the user reruns the instance later, the number of the second execution is 1.
|
|
45520
45531
|
* @type {number || null}
|
|
45521
45532
|
*/
|
|
45522
45533
|
this.LifeRoundNum = null;
|
|
@@ -45577,6 +45588,15 @@ The default value is 10000.
|
|
|
45577
45588
|
*/
|
|
45578
45589
|
this.EndLineCount = null;
|
|
45579
45590
|
|
|
45591
|
+
/**
|
|
45592
|
+
* Used when performing a paging query for logs. it has no specific business meaning.
|
|
45593
|
+
|
|
45594
|
+
Specifies that the value is null for the first query.
|
|
45595
|
+
Use the ExtInfo field value in the returned information from the previous query for the second and subsequent queries.
|
|
45596
|
+
* @type {string || null}
|
|
45597
|
+
*/
|
|
45598
|
+
this.ExtInfo = null;
|
|
45599
|
+
|
|
45580
45600
|
}
|
|
45581
45601
|
|
|
45582
45602
|
/**
|
|
@@ -45596,6 +45616,7 @@ The default value is 10000.
|
|
|
45596
45616
|
this.LogLevel = 'LogLevel' in params ? params.LogLevel : null;
|
|
45597
45617
|
this.StartLineNum = 'StartLineNum' in params ? params.StartLineNum : null;
|
|
45598
45618
|
this.EndLineCount = 'EndLineCount' in params ? params.EndLineCount : null;
|
|
45619
|
+
this.ExtInfo = 'ExtInfo' in params ? params.ExtInfo : null;
|
|
45599
45620
|
|
|
45600
45621
|
}
|
|
45601
45622
|
}
|