tencentcloud-sdk-nodejs-faceid 4.0.1034 → 4.0.1039
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
CHANGED
|
@@ -1557,17 +1557,18 @@ export interface DetectInfoBestFrame {
|
|
|
1557
1557
|
*/
|
|
1558
1558
|
export interface GetWeChatBillDetailsResponse {
|
|
1559
1559
|
/**
|
|
1560
|
-
*
|
|
1560
|
+
* 是否还有下一页。
|
|
1561
|
+
- 该字段为true时,需要将NextCursor的值作为入参Cursor继续调用本接口。
|
|
1561
1562
|
*/
|
|
1562
|
-
HasNextPage
|
|
1563
|
+
HasNextPage?: boolean
|
|
1563
1564
|
/**
|
|
1564
|
-
*
|
|
1565
|
+
* 下一页的游标,用于分页。
|
|
1565
1566
|
*/
|
|
1566
|
-
NextCursor
|
|
1567
|
+
NextCursor?: number
|
|
1567
1568
|
/**
|
|
1568
|
-
*
|
|
1569
|
+
* 数据。
|
|
1569
1570
|
*/
|
|
1570
|
-
WeChatBillDetails
|
|
1571
|
+
WeChatBillDetails?: Array<WeChatBillDetail>
|
|
1571
1572
|
/**
|
|
1572
1573
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1573
1574
|
*/
|
|
@@ -2160,15 +2161,21 @@ export interface MinorsVerificationResponse {
|
|
|
2160
2161
|
*/
|
|
2161
2162
|
export interface GetWeChatBillDetailsRequest {
|
|
2162
2163
|
/**
|
|
2163
|
-
* 拉取的日期(YYYY-MM-DD
|
|
2164
|
+
* 拉取的日期(YYYY-MM-DD)。
|
|
2165
|
+
- 最大可追溯到365天前。
|
|
2166
|
+
- 当天6点后才能拉取前一天的数据。
|
|
2164
2167
|
*/
|
|
2165
2168
|
Date: string
|
|
2166
2169
|
/**
|
|
2167
|
-
*
|
|
2170
|
+
* 游标。
|
|
2171
|
+
- 用于分页。
|
|
2172
|
+
- 取第一页时传0,取后续页面时,传入本接口响应中返回的NextCursor字段的值。
|
|
2168
2173
|
*/
|
|
2169
2174
|
Cursor: number
|
|
2170
2175
|
/**
|
|
2171
|
-
* 需要拉取账单详情业务对应的RuleId
|
|
2176
|
+
* 需要拉取账单详情业务对应的RuleId。
|
|
2177
|
+
- 不传会返回所有RuleId数据。
|
|
2178
|
+
- 默认为空字符串。
|
|
2172
2179
|
*/
|
|
2173
2180
|
RuleId?: string
|
|
2174
2181
|
}
|
|
@@ -1498,17 +1498,18 @@ export interface DetectInfoBestFrame {
|
|
|
1498
1498
|
*/
|
|
1499
1499
|
export interface GetWeChatBillDetailsResponse {
|
|
1500
1500
|
/**
|
|
1501
|
-
*
|
|
1501
|
+
* 是否还有下一页。
|
|
1502
|
+
- 该字段为true时,需要将NextCursor的值作为入参Cursor继续调用本接口。
|
|
1502
1503
|
*/
|
|
1503
|
-
HasNextPage
|
|
1504
|
+
HasNextPage?: boolean;
|
|
1504
1505
|
/**
|
|
1505
|
-
*
|
|
1506
|
+
* 下一页的游标,用于分页。
|
|
1506
1507
|
*/
|
|
1507
|
-
NextCursor
|
|
1508
|
+
NextCursor?: number;
|
|
1508
1509
|
/**
|
|
1509
|
-
*
|
|
1510
|
+
* 数据。
|
|
1510
1511
|
*/
|
|
1511
|
-
WeChatBillDetails
|
|
1512
|
+
WeChatBillDetails?: Array<WeChatBillDetail>;
|
|
1512
1513
|
/**
|
|
1513
1514
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1514
1515
|
*/
|
|
@@ -2086,15 +2087,21 @@ export interface MinorsVerificationResponse {
|
|
|
2086
2087
|
*/
|
|
2087
2088
|
export interface GetWeChatBillDetailsRequest {
|
|
2088
2089
|
/**
|
|
2089
|
-
* 拉取的日期(YYYY-MM-DD
|
|
2090
|
+
* 拉取的日期(YYYY-MM-DD)。
|
|
2091
|
+
- 最大可追溯到365天前。
|
|
2092
|
+
- 当天6点后才能拉取前一天的数据。
|
|
2090
2093
|
*/
|
|
2091
2094
|
Date: string;
|
|
2092
2095
|
/**
|
|
2093
|
-
*
|
|
2096
|
+
* 游标。
|
|
2097
|
+
- 用于分页。
|
|
2098
|
+
- 取第一页时传0,取后续页面时,传入本接口响应中返回的NextCursor字段的值。
|
|
2094
2099
|
*/
|
|
2095
2100
|
Cursor: number;
|
|
2096
2101
|
/**
|
|
2097
|
-
* 需要拉取账单详情业务对应的RuleId
|
|
2102
|
+
* 需要拉取账单详情业务对应的RuleId。
|
|
2103
|
+
- 不传会返回所有RuleId数据。
|
|
2104
|
+
- 默认为空字符串。
|
|
2098
2105
|
*/
|
|
2099
2106
|
RuleId?: string;
|
|
2100
2107
|
}
|