@antchain/ato 1.20.7 → 1.20.20
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/dist/client.d.ts +782 -46
- package/dist/client.js +1054 -4
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +1584 -107
package/src/client.ts
CHANGED
|
@@ -6271,6 +6271,63 @@ export class OrderSearchInfo extends $tea.Model {
|
|
|
6271
6271
|
}
|
|
6272
6272
|
}
|
|
6273
6273
|
|
|
6274
|
+
// ai经营团队可操作租户信息
|
|
6275
|
+
export class AIOperationTenant extends $tea.Model {
|
|
6276
|
+
// 租户id
|
|
6277
|
+
/**
|
|
6278
|
+
* @example
|
|
6279
|
+
* LDCJAHSJ
|
|
6280
|
+
*/
|
|
6281
|
+
tenantId: string;
|
|
6282
|
+
// 统一社会信用代码
|
|
6283
|
+
/**
|
|
6284
|
+
* @example
|
|
6285
|
+
* 91301010101010101A
|
|
6286
|
+
*/
|
|
6287
|
+
merchantId: string;
|
|
6288
|
+
// 企业名称
|
|
6289
|
+
/**
|
|
6290
|
+
* @example
|
|
6291
|
+
* 测试企业
|
|
6292
|
+
*/
|
|
6293
|
+
companyName: string;
|
|
6294
|
+
// 直连商户/一级服务商租户id
|
|
6295
|
+
/**
|
|
6296
|
+
* @example
|
|
6297
|
+
* 91301010101010101A
|
|
6298
|
+
*/
|
|
6299
|
+
serviceTenantId: string;
|
|
6300
|
+
// 直连商户/一级服务商企业名称
|
|
6301
|
+
/**
|
|
6302
|
+
* @example
|
|
6303
|
+
* 测试服务商企业
|
|
6304
|
+
*/
|
|
6305
|
+
serviceCompanyName: string;
|
|
6306
|
+
static names(): { [key: string]: string } {
|
|
6307
|
+
return {
|
|
6308
|
+
tenantId: 'tenant_id',
|
|
6309
|
+
merchantId: 'merchant_id',
|
|
6310
|
+
companyName: 'company_name',
|
|
6311
|
+
serviceTenantId: 'service_tenant_id',
|
|
6312
|
+
serviceCompanyName: 'service_company_name',
|
|
6313
|
+
};
|
|
6314
|
+
}
|
|
6315
|
+
|
|
6316
|
+
static types(): { [key: string]: any } {
|
|
6317
|
+
return {
|
|
6318
|
+
tenantId: 'string',
|
|
6319
|
+
merchantId: 'string',
|
|
6320
|
+
companyName: 'string',
|
|
6321
|
+
serviceTenantId: 'string',
|
|
6322
|
+
serviceCompanyName: 'string',
|
|
6323
|
+
};
|
|
6324
|
+
}
|
|
6325
|
+
|
|
6326
|
+
constructor(map?: { [key: string]: any }) {
|
|
6327
|
+
super(map);
|
|
6328
|
+
}
|
|
6329
|
+
}
|
|
6330
|
+
|
|
6274
6331
|
// 营销场景
|
|
6275
6332
|
export class PromotionScene extends $tea.Model {
|
|
6276
6333
|
// 租户id
|
|
@@ -7757,32 +7814,217 @@ export class XNameValuePair extends $tea.Model {
|
|
|
7757
7814
|
}
|
|
7758
7815
|
}
|
|
7759
7816
|
|
|
7760
|
-
export class
|
|
7817
|
+
export class TestAgenticnesxusDemoRequest extends $tea.Model {
|
|
7761
7818
|
// OAuth模式下的授权token
|
|
7762
7819
|
authToken?: string;
|
|
7763
7820
|
productInstanceId?: string;
|
|
7764
|
-
|
|
7821
|
+
static names(): { [key: string]: string } {
|
|
7822
|
+
return {
|
|
7823
|
+
authToken: 'auth_token',
|
|
7824
|
+
productInstanceId: 'product_instance_id',
|
|
7825
|
+
};
|
|
7826
|
+
}
|
|
7827
|
+
|
|
7828
|
+
static types(): { [key: string]: any } {
|
|
7829
|
+
return {
|
|
7830
|
+
authToken: 'string',
|
|
7831
|
+
productInstanceId: 'string',
|
|
7832
|
+
};
|
|
7833
|
+
}
|
|
7834
|
+
|
|
7835
|
+
constructor(map?: { [key: string]: any }) {
|
|
7836
|
+
super(map);
|
|
7837
|
+
}
|
|
7838
|
+
}
|
|
7839
|
+
|
|
7840
|
+
export class TestAgenticnesxusDemoResponse extends $tea.Model {
|
|
7841
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
7842
|
+
reqMsgId?: string;
|
|
7843
|
+
// 结果码,一般OK表示调用成功
|
|
7844
|
+
resultCode?: string;
|
|
7845
|
+
// 异常信息的文本描述
|
|
7846
|
+
resultMsg?: string;
|
|
7847
|
+
// 基础项目搭建-测试项目连通性
|
|
7848
|
+
greet?: string;
|
|
7849
|
+
static names(): { [key: string]: string } {
|
|
7850
|
+
return {
|
|
7851
|
+
reqMsgId: 'req_msg_id',
|
|
7852
|
+
resultCode: 'result_code',
|
|
7853
|
+
resultMsg: 'result_msg',
|
|
7854
|
+
greet: 'greet',
|
|
7855
|
+
};
|
|
7856
|
+
}
|
|
7857
|
+
|
|
7858
|
+
static types(): { [key: string]: any } {
|
|
7859
|
+
return {
|
|
7860
|
+
reqMsgId: 'string',
|
|
7861
|
+
resultCode: 'string',
|
|
7862
|
+
resultMsg: 'string',
|
|
7863
|
+
greet: 'string',
|
|
7864
|
+
};
|
|
7865
|
+
}
|
|
7866
|
+
|
|
7867
|
+
constructor(map?: { [key: string]: any }) {
|
|
7868
|
+
super(map);
|
|
7869
|
+
}
|
|
7870
|
+
}
|
|
7871
|
+
|
|
7872
|
+
export class TestAgenticnexusDemoRequest extends $tea.Model {
|
|
7873
|
+
// OAuth模式下的授权token
|
|
7874
|
+
authToken?: string;
|
|
7875
|
+
productInstanceId?: string;
|
|
7876
|
+
static names(): { [key: string]: string } {
|
|
7877
|
+
return {
|
|
7878
|
+
authToken: 'auth_token',
|
|
7879
|
+
productInstanceId: 'product_instance_id',
|
|
7880
|
+
};
|
|
7881
|
+
}
|
|
7882
|
+
|
|
7883
|
+
static types(): { [key: string]: any } {
|
|
7884
|
+
return {
|
|
7885
|
+
authToken: 'string',
|
|
7886
|
+
productInstanceId: 'string',
|
|
7887
|
+
};
|
|
7888
|
+
}
|
|
7889
|
+
|
|
7890
|
+
constructor(map?: { [key: string]: any }) {
|
|
7891
|
+
super(map);
|
|
7892
|
+
}
|
|
7893
|
+
}
|
|
7894
|
+
|
|
7895
|
+
export class TestAgenticnexusDemoResponse extends $tea.Model {
|
|
7896
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
7897
|
+
reqMsgId?: string;
|
|
7898
|
+
// 结果码,一般OK表示调用成功
|
|
7899
|
+
resultCode?: string;
|
|
7900
|
+
// 异常信息的文本描述
|
|
7901
|
+
resultMsg?: string;
|
|
7902
|
+
// 问候语
|
|
7903
|
+
greet?: string;
|
|
7904
|
+
static names(): { [key: string]: string } {
|
|
7905
|
+
return {
|
|
7906
|
+
reqMsgId: 'req_msg_id',
|
|
7907
|
+
resultCode: 'result_code',
|
|
7908
|
+
resultMsg: 'result_msg',
|
|
7909
|
+
greet: 'greet',
|
|
7910
|
+
};
|
|
7911
|
+
}
|
|
7912
|
+
|
|
7913
|
+
static types(): { [key: string]: any } {
|
|
7914
|
+
return {
|
|
7915
|
+
reqMsgId: 'string',
|
|
7916
|
+
resultCode: 'string',
|
|
7917
|
+
resultMsg: 'string',
|
|
7918
|
+
greet: 'string',
|
|
7919
|
+
};
|
|
7920
|
+
}
|
|
7921
|
+
|
|
7922
|
+
constructor(map?: { [key: string]: any }) {
|
|
7923
|
+
super(map);
|
|
7924
|
+
}
|
|
7925
|
+
}
|
|
7926
|
+
|
|
7927
|
+
export class SummaryAgenticnexusDashboardRequest extends $tea.Model {
|
|
7928
|
+
// OAuth模式下的授权token
|
|
7929
|
+
authToken?: string;
|
|
7930
|
+
productInstanceId?: string;
|
|
7931
|
+
// 目标领域: PREFILTER 前筛 / PURCHASE 采买 / DISTRIBUTION 分发 / SENTINEL 预警
|
|
7932
|
+
module: string;
|
|
7933
|
+
// 待总结的输入内容(该领域指标/观察文本)
|
|
7934
|
+
input: string;
|
|
7935
|
+
// 原始数据 JSON 字符串(补充上下文)
|
|
7936
|
+
rawData?: string;
|
|
7937
|
+
// 数据日期 yyyyMMdd,仅作上下文/记录,默认当天
|
|
7938
|
+
date?: string;
|
|
7939
|
+
static names(): { [key: string]: string } {
|
|
7940
|
+
return {
|
|
7941
|
+
authToken: 'auth_token',
|
|
7942
|
+
productInstanceId: 'product_instance_id',
|
|
7943
|
+
module: 'module',
|
|
7944
|
+
input: 'input',
|
|
7945
|
+
rawData: 'raw_data',
|
|
7946
|
+
date: 'date',
|
|
7947
|
+
};
|
|
7948
|
+
}
|
|
7949
|
+
|
|
7950
|
+
static types(): { [key: string]: any } {
|
|
7951
|
+
return {
|
|
7952
|
+
authToken: 'string',
|
|
7953
|
+
productInstanceId: 'string',
|
|
7954
|
+
module: 'string',
|
|
7955
|
+
input: 'string',
|
|
7956
|
+
rawData: 'string',
|
|
7957
|
+
date: 'string',
|
|
7958
|
+
};
|
|
7959
|
+
}
|
|
7960
|
+
|
|
7961
|
+
constructor(map?: { [key: string]: any }) {
|
|
7962
|
+
super(map);
|
|
7963
|
+
}
|
|
7964
|
+
}
|
|
7965
|
+
|
|
7966
|
+
export class SummaryAgenticnexusDashboardResponse extends $tea.Model {
|
|
7967
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
7968
|
+
reqMsgId?: string;
|
|
7969
|
+
// 结果码,一般OK表示调用成功
|
|
7970
|
+
resultCode?: string;
|
|
7971
|
+
// 异常信息的文本描述
|
|
7972
|
+
resultMsg?: string;
|
|
7973
|
+
// 回显目标领域: PREFILTER 前筛 / PURCHASE 采买 / DISTRIBUTION 分发 / SENTINEL 预警
|
|
7974
|
+
module?: string;
|
|
7975
|
+
// 领域总结
|
|
7976
|
+
summary?: string;
|
|
7977
|
+
static names(): { [key: string]: string } {
|
|
7978
|
+
return {
|
|
7979
|
+
reqMsgId: 'req_msg_id',
|
|
7980
|
+
resultCode: 'result_code',
|
|
7981
|
+
resultMsg: 'result_msg',
|
|
7982
|
+
module: 'module',
|
|
7983
|
+
summary: 'summary',
|
|
7984
|
+
};
|
|
7985
|
+
}
|
|
7986
|
+
|
|
7987
|
+
static types(): { [key: string]: any } {
|
|
7988
|
+
return {
|
|
7989
|
+
reqMsgId: 'string',
|
|
7990
|
+
resultCode: 'string',
|
|
7991
|
+
resultMsg: 'string',
|
|
7992
|
+
module: 'string',
|
|
7993
|
+
summary: 'string',
|
|
7994
|
+
};
|
|
7995
|
+
}
|
|
7996
|
+
|
|
7997
|
+
constructor(map?: { [key: string]: any }) {
|
|
7998
|
+
super(map);
|
|
7999
|
+
}
|
|
8000
|
+
}
|
|
8001
|
+
|
|
8002
|
+
export class InvokeAgenticnexusAioperationRequest extends $tea.Model {
|
|
8003
|
+
// OAuth模式下的授权token
|
|
8004
|
+
authToken?: string;
|
|
8005
|
+
productInstanceId?: string;
|
|
8006
|
+
// 租户 ID
|
|
8007
|
+
tenantId: string;
|
|
8008
|
+
// 社会统一信用代码
|
|
7765
8009
|
merchantId: string;
|
|
7766
|
-
//
|
|
7767
|
-
|
|
7768
|
-
//
|
|
7769
|
-
|
|
7770
|
-
//
|
|
7771
|
-
|
|
7772
|
-
//
|
|
7773
|
-
|
|
7774
|
-
// 交易流水:SETTLE
|
|
7775
|
-
billType: string;
|
|
8010
|
+
// 业务场景标识
|
|
8011
|
+
scene: string;
|
|
8012
|
+
// 场景特定业务字段键值
|
|
8013
|
+
bizRequest?: string;
|
|
8014
|
+
// 调用方系统名(
|
|
8015
|
+
sysName: string;
|
|
8016
|
+
// 链路 ID
|
|
8017
|
+
traceId: string;
|
|
7776
8018
|
static names(): { [key: string]: string } {
|
|
7777
8019
|
return {
|
|
7778
8020
|
authToken: 'auth_token',
|
|
7779
8021
|
productInstanceId: 'product_instance_id',
|
|
8022
|
+
tenantId: 'tenant_id',
|
|
7780
8023
|
merchantId: 'merchant_id',
|
|
7781
|
-
|
|
7782
|
-
|
|
7783
|
-
|
|
7784
|
-
|
|
7785
|
-
billType: 'bill_type',
|
|
8024
|
+
scene: 'scene',
|
|
8025
|
+
bizRequest: 'biz_request',
|
|
8026
|
+
sysName: 'sys_name',
|
|
8027
|
+
traceId: 'trace_id',
|
|
7786
8028
|
};
|
|
7787
8029
|
}
|
|
7788
8030
|
|
|
@@ -7790,12 +8032,12 @@ export class InitFundAlipaysettletocardRequest extends $tea.Model {
|
|
|
7790
8032
|
return {
|
|
7791
8033
|
authToken: 'string',
|
|
7792
8034
|
productInstanceId: 'string',
|
|
8035
|
+
tenantId: 'string',
|
|
7793
8036
|
merchantId: 'string',
|
|
7794
|
-
|
|
7795
|
-
|
|
7796
|
-
|
|
7797
|
-
|
|
7798
|
-
billType: 'string',
|
|
8037
|
+
scene: 'string',
|
|
8038
|
+
bizRequest: 'string',
|
|
8039
|
+
sysName: 'string',
|
|
8040
|
+
traceId: 'string',
|
|
7799
8041
|
};
|
|
7800
8042
|
}
|
|
7801
8043
|
|
|
@@ -7804,21 +8046,33 @@ export class InitFundAlipaysettletocardRequest extends $tea.Model {
|
|
|
7804
8046
|
}
|
|
7805
8047
|
}
|
|
7806
8048
|
|
|
7807
|
-
export class
|
|
8049
|
+
export class InvokeAgenticnexusAioperationResponse extends $tea.Model {
|
|
7808
8050
|
// 请求唯一ID,用于链路跟踪和问题排查
|
|
7809
8051
|
reqMsgId?: string;
|
|
7810
8052
|
// 结果码,一般OK表示调用成功
|
|
7811
8053
|
resultCode?: string;
|
|
7812
8054
|
// 异常信息的文本描述
|
|
7813
8055
|
resultMsg?: string;
|
|
7814
|
-
//
|
|
7815
|
-
|
|
8056
|
+
// 业务是否成功
|
|
8057
|
+
success?: boolean;
|
|
8058
|
+
// 结果码
|
|
8059
|
+
code?: string;
|
|
8060
|
+
// 提示信息
|
|
8061
|
+
message?: string;
|
|
8062
|
+
// 链路 ID
|
|
8063
|
+
traceId?: string;
|
|
8064
|
+
// 场景特定响应体
|
|
8065
|
+
bizData?: string;
|
|
7816
8066
|
static names(): { [key: string]: string } {
|
|
7817
8067
|
return {
|
|
7818
8068
|
reqMsgId: 'req_msg_id',
|
|
7819
8069
|
resultCode: 'result_code',
|
|
7820
8070
|
resultMsg: 'result_msg',
|
|
7821
|
-
|
|
8071
|
+
success: 'success',
|
|
8072
|
+
code: 'code',
|
|
8073
|
+
message: 'message',
|
|
8074
|
+
traceId: 'trace_id',
|
|
8075
|
+
bizData: 'biz_data',
|
|
7822
8076
|
};
|
|
7823
8077
|
}
|
|
7824
8078
|
|
|
@@ -7827,7 +8081,11 @@ export class InitFundAlipaysettletocardResponse extends $tea.Model {
|
|
|
7827
8081
|
reqMsgId: 'string',
|
|
7828
8082
|
resultCode: 'string',
|
|
7829
8083
|
resultMsg: 'string',
|
|
7830
|
-
|
|
8084
|
+
success: 'boolean',
|
|
8085
|
+
code: 'string',
|
|
8086
|
+
message: 'string',
|
|
8087
|
+
traceId: 'string',
|
|
8088
|
+
bizData: 'string',
|
|
7831
8089
|
};
|
|
7832
8090
|
}
|
|
7833
8091
|
|
|
@@ -7836,20 +8094,32 @@ export class InitFundAlipaysettletocardResponse extends $tea.Model {
|
|
|
7836
8094
|
}
|
|
7837
8095
|
}
|
|
7838
8096
|
|
|
7839
|
-
export class
|
|
8097
|
+
export class InvokeAgenticnexusAilongoperationRequest extends $tea.Model {
|
|
7840
8098
|
// OAuth模式下的授权token
|
|
7841
8099
|
authToken?: string;
|
|
7842
8100
|
productInstanceId?: string;
|
|
7843
|
-
//
|
|
8101
|
+
// 租户 ID
|
|
8102
|
+
tenantId: string;
|
|
8103
|
+
// 社会统一信用代码
|
|
7844
8104
|
merchantId: string;
|
|
7845
|
-
//
|
|
7846
|
-
|
|
8105
|
+
// 业务场景标识
|
|
8106
|
+
scene: string;
|
|
8107
|
+
// 场景特定业务字段键值
|
|
8108
|
+
bizRequest?: string;
|
|
8109
|
+
// 调用方系统名
|
|
8110
|
+
sysName: string;
|
|
8111
|
+
// 链路 ID
|
|
8112
|
+
traceId: string;
|
|
7847
8113
|
static names(): { [key: string]: string } {
|
|
7848
8114
|
return {
|
|
7849
8115
|
authToken: 'auth_token',
|
|
7850
8116
|
productInstanceId: 'product_instance_id',
|
|
8117
|
+
tenantId: 'tenant_id',
|
|
7851
8118
|
merchantId: 'merchant_id',
|
|
7852
|
-
|
|
8119
|
+
scene: 'scene',
|
|
8120
|
+
bizRequest: 'biz_request',
|
|
8121
|
+
sysName: 'sys_name',
|
|
8122
|
+
traceId: 'trace_id',
|
|
7853
8123
|
};
|
|
7854
8124
|
}
|
|
7855
8125
|
|
|
@@ -7857,8 +8127,12 @@ export class QueryFundAlipaysettletocardRequest extends $tea.Model {
|
|
|
7857
8127
|
return {
|
|
7858
8128
|
authToken: 'string',
|
|
7859
8129
|
productInstanceId: 'string',
|
|
8130
|
+
tenantId: 'string',
|
|
7860
8131
|
merchantId: 'string',
|
|
7861
|
-
|
|
8132
|
+
scene: 'string',
|
|
8133
|
+
bizRequest: 'string',
|
|
8134
|
+
sysName: 'string',
|
|
8135
|
+
traceId: 'string',
|
|
7862
8136
|
};
|
|
7863
8137
|
}
|
|
7864
8138
|
|
|
@@ -7867,21 +8141,33 @@ export class QueryFundAlipaysettletocardRequest extends $tea.Model {
|
|
|
7867
8141
|
}
|
|
7868
8142
|
}
|
|
7869
8143
|
|
|
7870
|
-
export class
|
|
8144
|
+
export class InvokeAgenticnexusAilongoperationResponse extends $tea.Model {
|
|
7871
8145
|
// 请求唯一ID,用于链路跟踪和问题排查
|
|
7872
8146
|
reqMsgId?: string;
|
|
7873
8147
|
// 结果码,一般OK表示调用成功
|
|
7874
8148
|
resultCode?: string;
|
|
7875
8149
|
// 异常信息的文本描述
|
|
7876
8150
|
resultMsg?: string;
|
|
7877
|
-
//
|
|
7878
|
-
|
|
8151
|
+
// 业务是否成功
|
|
8152
|
+
success?: boolean;
|
|
8153
|
+
// 结果码
|
|
8154
|
+
code?: string;
|
|
8155
|
+
// 提示信息
|
|
8156
|
+
message?: string;
|
|
8157
|
+
// 链路 ID
|
|
8158
|
+
traceId?: string;
|
|
8159
|
+
// 场景特定响应体
|
|
8160
|
+
bizData?: string;
|
|
7879
8161
|
static names(): { [key: string]: string } {
|
|
7880
8162
|
return {
|
|
7881
8163
|
reqMsgId: 'req_msg_id',
|
|
7882
8164
|
resultCode: 'result_code',
|
|
7883
8165
|
resultMsg: 'result_msg',
|
|
7884
|
-
|
|
8166
|
+
success: 'success',
|
|
8167
|
+
code: 'code',
|
|
8168
|
+
message: 'message',
|
|
8169
|
+
traceId: 'trace_id',
|
|
8170
|
+
bizData: 'biz_data',
|
|
7885
8171
|
};
|
|
7886
8172
|
}
|
|
7887
8173
|
|
|
@@ -7890,7 +8176,11 @@ export class QueryFundAlipaysettletocardResponse extends $tea.Model {
|
|
|
7890
8176
|
reqMsgId: 'string',
|
|
7891
8177
|
resultCode: 'string',
|
|
7892
8178
|
resultMsg: 'string',
|
|
7893
|
-
|
|
8179
|
+
success: 'boolean',
|
|
8180
|
+
code: 'string',
|
|
8181
|
+
message: 'string',
|
|
8182
|
+
traceId: 'string',
|
|
8183
|
+
bizData: 'string',
|
|
7894
8184
|
};
|
|
7895
8185
|
}
|
|
7896
8186
|
|
|
@@ -7899,7 +8189,7 @@ export class QueryFundAlipaysettletocardResponse extends $tea.Model {
|
|
|
7899
8189
|
}
|
|
7900
8190
|
}
|
|
7901
8191
|
|
|
7902
|
-
export class
|
|
8192
|
+
export class InitFundAlipaysettletocardRequest extends $tea.Model {
|
|
7903
8193
|
// OAuth模式下的授权token
|
|
7904
8194
|
authToken?: string;
|
|
7905
8195
|
productInstanceId?: string;
|
|
@@ -7913,7 +8203,149 @@ export class InitTradeSettletocardRequest extends $tea.Model {
|
|
|
7913
8203
|
gmtPlan: string;
|
|
7914
8204
|
// 账单结束日期;格式:YYYY-MM-DD
|
|
7915
8205
|
gmtFinish: string;
|
|
7916
|
-
// 交易流水:
|
|
8206
|
+
// 交易流水:SETTLE
|
|
8207
|
+
billType: string;
|
|
8208
|
+
static names(): { [key: string]: string } {
|
|
8209
|
+
return {
|
|
8210
|
+
authToken: 'auth_token',
|
|
8211
|
+
productInstanceId: 'product_instance_id',
|
|
8212
|
+
merchantId: 'merchant_id',
|
|
8213
|
+
payChannel: 'pay_channel',
|
|
8214
|
+
subMerchantId: 'sub_merchant_id',
|
|
8215
|
+
gmtPlan: 'gmt_plan',
|
|
8216
|
+
gmtFinish: 'gmt_finish',
|
|
8217
|
+
billType: 'bill_type',
|
|
8218
|
+
};
|
|
8219
|
+
}
|
|
8220
|
+
|
|
8221
|
+
static types(): { [key: string]: any } {
|
|
8222
|
+
return {
|
|
8223
|
+
authToken: 'string',
|
|
8224
|
+
productInstanceId: 'string',
|
|
8225
|
+
merchantId: 'string',
|
|
8226
|
+
payChannel: 'string',
|
|
8227
|
+
subMerchantId: 'string',
|
|
8228
|
+
gmtPlan: 'string',
|
|
8229
|
+
gmtFinish: 'string',
|
|
8230
|
+
billType: 'string',
|
|
8231
|
+
};
|
|
8232
|
+
}
|
|
8233
|
+
|
|
8234
|
+
constructor(map?: { [key: string]: any }) {
|
|
8235
|
+
super(map);
|
|
8236
|
+
}
|
|
8237
|
+
}
|
|
8238
|
+
|
|
8239
|
+
export class InitFundAlipaysettletocardResponse extends $tea.Model {
|
|
8240
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
8241
|
+
reqMsgId?: string;
|
|
8242
|
+
// 结果码,一般OK表示调用成功
|
|
8243
|
+
resultCode?: string;
|
|
8244
|
+
// 异常信息的文本描述
|
|
8245
|
+
resultMsg?: string;
|
|
8246
|
+
// 任务id
|
|
8247
|
+
taskId?: string;
|
|
8248
|
+
static names(): { [key: string]: string } {
|
|
8249
|
+
return {
|
|
8250
|
+
reqMsgId: 'req_msg_id',
|
|
8251
|
+
resultCode: 'result_code',
|
|
8252
|
+
resultMsg: 'result_msg',
|
|
8253
|
+
taskId: 'task_id',
|
|
8254
|
+
};
|
|
8255
|
+
}
|
|
8256
|
+
|
|
8257
|
+
static types(): { [key: string]: any } {
|
|
8258
|
+
return {
|
|
8259
|
+
reqMsgId: 'string',
|
|
8260
|
+
resultCode: 'string',
|
|
8261
|
+
resultMsg: 'string',
|
|
8262
|
+
taskId: 'string',
|
|
8263
|
+
};
|
|
8264
|
+
}
|
|
8265
|
+
|
|
8266
|
+
constructor(map?: { [key: string]: any }) {
|
|
8267
|
+
super(map);
|
|
8268
|
+
}
|
|
8269
|
+
}
|
|
8270
|
+
|
|
8271
|
+
export class QueryFundAlipaysettletocardRequest extends $tea.Model {
|
|
8272
|
+
// OAuth模式下的授权token
|
|
8273
|
+
authToken?: string;
|
|
8274
|
+
productInstanceId?: string;
|
|
8275
|
+
// 统一社会信用代码
|
|
8276
|
+
merchantId: string;
|
|
8277
|
+
// 任务id
|
|
8278
|
+
taskId: string;
|
|
8279
|
+
static names(): { [key: string]: string } {
|
|
8280
|
+
return {
|
|
8281
|
+
authToken: 'auth_token',
|
|
8282
|
+
productInstanceId: 'product_instance_id',
|
|
8283
|
+
merchantId: 'merchant_id',
|
|
8284
|
+
taskId: 'task_id',
|
|
8285
|
+
};
|
|
8286
|
+
}
|
|
8287
|
+
|
|
8288
|
+
static types(): { [key: string]: any } {
|
|
8289
|
+
return {
|
|
8290
|
+
authToken: 'string',
|
|
8291
|
+
productInstanceId: 'string',
|
|
8292
|
+
merchantId: 'string',
|
|
8293
|
+
taskId: 'string',
|
|
8294
|
+
};
|
|
8295
|
+
}
|
|
8296
|
+
|
|
8297
|
+
constructor(map?: { [key: string]: any }) {
|
|
8298
|
+
super(map);
|
|
8299
|
+
}
|
|
8300
|
+
}
|
|
8301
|
+
|
|
8302
|
+
export class QueryFundAlipaysettletocardResponse extends $tea.Model {
|
|
8303
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
8304
|
+
reqMsgId?: string;
|
|
8305
|
+
// 结果码,一般OK表示调用成功
|
|
8306
|
+
resultCode?: string;
|
|
8307
|
+
// 异常信息的文本描述
|
|
8308
|
+
resultMsg?: string;
|
|
8309
|
+
// 账单下载地址
|
|
8310
|
+
downloadUrl?: string;
|
|
8311
|
+
static names(): { [key: string]: string } {
|
|
8312
|
+
return {
|
|
8313
|
+
reqMsgId: 'req_msg_id',
|
|
8314
|
+
resultCode: 'result_code',
|
|
8315
|
+
resultMsg: 'result_msg',
|
|
8316
|
+
downloadUrl: 'download_url',
|
|
8317
|
+
};
|
|
8318
|
+
}
|
|
8319
|
+
|
|
8320
|
+
static types(): { [key: string]: any } {
|
|
8321
|
+
return {
|
|
8322
|
+
reqMsgId: 'string',
|
|
8323
|
+
resultCode: 'string',
|
|
8324
|
+
resultMsg: 'string',
|
|
8325
|
+
downloadUrl: 'string',
|
|
8326
|
+
};
|
|
8327
|
+
}
|
|
8328
|
+
|
|
8329
|
+
constructor(map?: { [key: string]: any }) {
|
|
8330
|
+
super(map);
|
|
8331
|
+
}
|
|
8332
|
+
}
|
|
8333
|
+
|
|
8334
|
+
export class InitTradeSettletocardRequest extends $tea.Model {
|
|
8335
|
+
// OAuth模式下的授权token
|
|
8336
|
+
authToken?: string;
|
|
8337
|
+
productInstanceId?: string;
|
|
8338
|
+
// 统一社会信用代码
|
|
8339
|
+
merchantId: string;
|
|
8340
|
+
// 支付渠道: ALIPAY-支付宝支付 JDPAY-京东支付
|
|
8341
|
+
payChannel: string;
|
|
8342
|
+
// 京东二级商户号,当pay_channel=JDPAY时,该字段必填
|
|
8343
|
+
subMerchantId?: string;
|
|
8344
|
+
// 账单开始日期, 格式:YYYY-MM-DD
|
|
8345
|
+
gmtPlan: string;
|
|
8346
|
+
// 账单结束日期;格式:YYYY-MM-DD
|
|
8347
|
+
gmtFinish: string;
|
|
8348
|
+
// 交易流水:TRADE,结算流水:SETTLE
|
|
7917
8349
|
billType: string;
|
|
7918
8350
|
static names(): { [key: string]: string } {
|
|
7919
8351
|
return {
|
|
@@ -8679,6 +9111,65 @@ export class ExecFundPlanResponse extends $tea.Model {
|
|
|
8679
9111
|
}
|
|
8680
9112
|
}
|
|
8681
9113
|
|
|
9114
|
+
export class QueryInnerAioperationlistRequest extends $tea.Model {
|
|
9115
|
+
// OAuth模式下的授权token
|
|
9116
|
+
authToken?: string;
|
|
9117
|
+
productInstanceId?: string;
|
|
9118
|
+
// 商户控制台实际登录的租户id
|
|
9119
|
+
tenantId: string;
|
|
9120
|
+
static names(): { [key: string]: string } {
|
|
9121
|
+
return {
|
|
9122
|
+
authToken: 'auth_token',
|
|
9123
|
+
productInstanceId: 'product_instance_id',
|
|
9124
|
+
tenantId: 'tenant_id',
|
|
9125
|
+
};
|
|
9126
|
+
}
|
|
9127
|
+
|
|
9128
|
+
static types(): { [key: string]: any } {
|
|
9129
|
+
return {
|
|
9130
|
+
authToken: 'string',
|
|
9131
|
+
productInstanceId: 'string',
|
|
9132
|
+
tenantId: 'string',
|
|
9133
|
+
};
|
|
9134
|
+
}
|
|
9135
|
+
|
|
9136
|
+
constructor(map?: { [key: string]: any }) {
|
|
9137
|
+
super(map);
|
|
9138
|
+
}
|
|
9139
|
+
}
|
|
9140
|
+
|
|
9141
|
+
export class QueryInnerAioperationlistResponse extends $tea.Model {
|
|
9142
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
9143
|
+
reqMsgId?: string;
|
|
9144
|
+
// 结果码,一般OK表示调用成功
|
|
9145
|
+
resultCode?: string;
|
|
9146
|
+
// 异常信息的文本描述
|
|
9147
|
+
resultMsg?: string;
|
|
9148
|
+
// AI经营团队可操作租户结构体
|
|
9149
|
+
aiOperationTenantList?: AIOperationTenant[];
|
|
9150
|
+
static names(): { [key: string]: string } {
|
|
9151
|
+
return {
|
|
9152
|
+
reqMsgId: 'req_msg_id',
|
|
9153
|
+
resultCode: 'result_code',
|
|
9154
|
+
resultMsg: 'result_msg',
|
|
9155
|
+
aiOperationTenantList: 'ai_operation_tenant_list',
|
|
9156
|
+
};
|
|
9157
|
+
}
|
|
9158
|
+
|
|
9159
|
+
static types(): { [key: string]: any } {
|
|
9160
|
+
return {
|
|
9161
|
+
reqMsgId: 'string',
|
|
9162
|
+
resultCode: 'string',
|
|
9163
|
+
resultMsg: 'string',
|
|
9164
|
+
aiOperationTenantList: { 'type': 'array', 'itemType': AIOperationTenant },
|
|
9165
|
+
};
|
|
9166
|
+
}
|
|
9167
|
+
|
|
9168
|
+
constructor(map?: { [key: string]: any }) {
|
|
9169
|
+
super(map);
|
|
9170
|
+
}
|
|
9171
|
+
}
|
|
9172
|
+
|
|
8682
9173
|
export class QueryInnerFundassetpackagerepaymentRequest extends $tea.Model {
|
|
8683
9174
|
// OAuth模式下的授权token
|
|
8684
9175
|
authToken?: string;
|
|
@@ -17306,6 +17797,8 @@ export class GetFundCompensatesignurlRequest extends $tea.Model {
|
|
|
17306
17797
|
// TRANSFER:转账代偿签约串
|
|
17307
17798
|
// WITHHOLD:代扣代偿签约串
|
|
17308
17799
|
type: string;
|
|
17800
|
+
// 支付宝uid
|
|
17801
|
+
alipayUid?: string;
|
|
17309
17802
|
static names(): { [key: string]: string } {
|
|
17310
17803
|
return {
|
|
17311
17804
|
authToken: 'auth_token',
|
|
@@ -17314,6 +17807,7 @@ export class GetFundCompensatesignurlRequest extends $tea.Model {
|
|
|
17314
17807
|
merchantTenantId: 'merchant_tenant_id',
|
|
17315
17808
|
merchantId: 'merchant_id',
|
|
17316
17809
|
type: 'type',
|
|
17810
|
+
alipayUid: 'alipay_uid',
|
|
17317
17811
|
};
|
|
17318
17812
|
}
|
|
17319
17813
|
|
|
@@ -17325,6 +17819,7 @@ export class GetFundCompensatesignurlRequest extends $tea.Model {
|
|
|
17325
17819
|
merchantTenantId: 'string',
|
|
17326
17820
|
merchantId: 'string',
|
|
17327
17821
|
type: 'string',
|
|
17822
|
+
alipayUid: 'string',
|
|
17328
17823
|
};
|
|
17329
17824
|
}
|
|
17330
17825
|
|
|
@@ -31152,17 +31647,683 @@ export class CancelSignFlowResponse extends $tea.Model {
|
|
|
31152
31647
|
}
|
|
31153
31648
|
}
|
|
31154
31649
|
|
|
31155
|
-
export class GetSignContractcertificateRequest extends $tea.Model {
|
|
31650
|
+
export class GetSignContractcertificateRequest extends $tea.Model {
|
|
31651
|
+
// OAuth模式下的授权token
|
|
31652
|
+
authToken?: string;
|
|
31653
|
+
productInstanceId?: string;
|
|
31654
|
+
// 流程id
|
|
31655
|
+
signNo: string;
|
|
31656
|
+
static names(): { [key: string]: string } {
|
|
31657
|
+
return {
|
|
31658
|
+
authToken: 'auth_token',
|
|
31659
|
+
productInstanceId: 'product_instance_id',
|
|
31660
|
+
signNo: 'sign_no',
|
|
31661
|
+
};
|
|
31662
|
+
}
|
|
31663
|
+
|
|
31664
|
+
static types(): { [key: string]: any } {
|
|
31665
|
+
return {
|
|
31666
|
+
authToken: 'string',
|
|
31667
|
+
productInstanceId: 'string',
|
|
31668
|
+
signNo: 'string',
|
|
31669
|
+
};
|
|
31670
|
+
}
|
|
31671
|
+
|
|
31672
|
+
constructor(map?: { [key: string]: any }) {
|
|
31673
|
+
super(map);
|
|
31674
|
+
}
|
|
31675
|
+
}
|
|
31676
|
+
|
|
31677
|
+
export class GetSignContractcertificateResponse extends $tea.Model {
|
|
31678
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
31679
|
+
reqMsgId?: string;
|
|
31680
|
+
// 结果码,一般OK表示调用成功
|
|
31681
|
+
resultCode?: string;
|
|
31682
|
+
// 异常信息的文本描述
|
|
31683
|
+
resultMsg?: string;
|
|
31684
|
+
// 下载文件地址(一小时内有效)
|
|
31685
|
+
url?: string;
|
|
31686
|
+
static names(): { [key: string]: string } {
|
|
31687
|
+
return {
|
|
31688
|
+
reqMsgId: 'req_msg_id',
|
|
31689
|
+
resultCode: 'result_code',
|
|
31690
|
+
resultMsg: 'result_msg',
|
|
31691
|
+
url: 'url',
|
|
31692
|
+
};
|
|
31693
|
+
}
|
|
31694
|
+
|
|
31695
|
+
static types(): { [key: string]: any } {
|
|
31696
|
+
return {
|
|
31697
|
+
reqMsgId: 'string',
|
|
31698
|
+
resultCode: 'string',
|
|
31699
|
+
resultMsg: 'string',
|
|
31700
|
+
url: 'string',
|
|
31701
|
+
};
|
|
31702
|
+
}
|
|
31703
|
+
|
|
31704
|
+
constructor(map?: { [key: string]: any }) {
|
|
31705
|
+
super(map);
|
|
31706
|
+
}
|
|
31707
|
+
}
|
|
31708
|
+
|
|
31709
|
+
export class CreateSignFlowRequest extends $tea.Model {
|
|
31710
|
+
// OAuth模式下的授权token
|
|
31711
|
+
authToken?: string;
|
|
31712
|
+
productInstanceId?: string;
|
|
31713
|
+
// 用户协议
|
|
31714
|
+
signFlowTitle: string;
|
|
31715
|
+
// 签署有效期毫秒时间戳,不传默认7天有效期
|
|
31716
|
+
signValidity?: number;
|
|
31717
|
+
// 签署完成后的跳转链接
|
|
31718
|
+
redirectUrl?: string;
|
|
31719
|
+
// 业务id,可以是订单id或其他业务id
|
|
31720
|
+
businessId: string;
|
|
31721
|
+
// 签署业务场景
|
|
31722
|
+
businessScene: string;
|
|
31723
|
+
// 签署人列表
|
|
31724
|
+
signAccountList: SignAccount[];
|
|
31725
|
+
// 签署模板列表
|
|
31726
|
+
templateInfoList: TemplateInfo[];
|
|
31727
|
+
static names(): { [key: string]: string } {
|
|
31728
|
+
return {
|
|
31729
|
+
authToken: 'auth_token',
|
|
31730
|
+
productInstanceId: 'product_instance_id',
|
|
31731
|
+
signFlowTitle: 'sign_flow_title',
|
|
31732
|
+
signValidity: 'sign_validity',
|
|
31733
|
+
redirectUrl: 'redirect_url',
|
|
31734
|
+
businessId: 'business_id',
|
|
31735
|
+
businessScene: 'business_scene',
|
|
31736
|
+
signAccountList: 'sign_account_list',
|
|
31737
|
+
templateInfoList: 'template_info_list',
|
|
31738
|
+
};
|
|
31739
|
+
}
|
|
31740
|
+
|
|
31741
|
+
static types(): { [key: string]: any } {
|
|
31742
|
+
return {
|
|
31743
|
+
authToken: 'string',
|
|
31744
|
+
productInstanceId: 'string',
|
|
31745
|
+
signFlowTitle: 'string',
|
|
31746
|
+
signValidity: 'number',
|
|
31747
|
+
redirectUrl: 'string',
|
|
31748
|
+
businessId: 'string',
|
|
31749
|
+
businessScene: 'string',
|
|
31750
|
+
signAccountList: { 'type': 'array', 'itemType': SignAccount },
|
|
31751
|
+
templateInfoList: { 'type': 'array', 'itemType': TemplateInfo },
|
|
31752
|
+
};
|
|
31753
|
+
}
|
|
31754
|
+
|
|
31755
|
+
constructor(map?: { [key: string]: any }) {
|
|
31756
|
+
super(map);
|
|
31757
|
+
}
|
|
31758
|
+
}
|
|
31759
|
+
|
|
31760
|
+
export class CreateSignFlowResponse extends $tea.Model {
|
|
31761
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
31762
|
+
reqMsgId?: string;
|
|
31763
|
+
// 结果码,一般OK表示调用成功
|
|
31764
|
+
resultCode?: string;
|
|
31765
|
+
// 异常信息的文本描述
|
|
31766
|
+
resultMsg?: string;
|
|
31767
|
+
// 合同签署编号,作为合同查询的依据
|
|
31768
|
+
signNo?: string;
|
|
31769
|
+
// 签署链接结果
|
|
31770
|
+
signUrlResult?: SignUrlResult;
|
|
31771
|
+
static names(): { [key: string]: string } {
|
|
31772
|
+
return {
|
|
31773
|
+
reqMsgId: 'req_msg_id',
|
|
31774
|
+
resultCode: 'result_code',
|
|
31775
|
+
resultMsg: 'result_msg',
|
|
31776
|
+
signNo: 'sign_no',
|
|
31777
|
+
signUrlResult: 'sign_url_result',
|
|
31778
|
+
};
|
|
31779
|
+
}
|
|
31780
|
+
|
|
31781
|
+
static types(): { [key: string]: any } {
|
|
31782
|
+
return {
|
|
31783
|
+
reqMsgId: 'string',
|
|
31784
|
+
resultCode: 'string',
|
|
31785
|
+
resultMsg: 'string',
|
|
31786
|
+
signNo: 'string',
|
|
31787
|
+
signUrlResult: SignUrlResult,
|
|
31788
|
+
};
|
|
31789
|
+
}
|
|
31790
|
+
|
|
31791
|
+
constructor(map?: { [key: string]: any }) {
|
|
31792
|
+
super(map);
|
|
31793
|
+
}
|
|
31794
|
+
}
|
|
31795
|
+
|
|
31796
|
+
export class QueryPromotionUserunvisitedappidRequest extends $tea.Model {
|
|
31797
|
+
// OAuth模式下的授权token
|
|
31798
|
+
authToken?: string;
|
|
31799
|
+
productInstanceId?: string;
|
|
31800
|
+
// 支付宝用户uid
|
|
31801
|
+
userId: string;
|
|
31802
|
+
// 订阅的appid列表,不支持的appid会自动忽略
|
|
31803
|
+
appIdList: string[];
|
|
31804
|
+
// 默认appid,无法判断推荐结果时返回此默认值
|
|
31805
|
+
defaultAppId: string;
|
|
31806
|
+
static names(): { [key: string]: string } {
|
|
31807
|
+
return {
|
|
31808
|
+
authToken: 'auth_token',
|
|
31809
|
+
productInstanceId: 'product_instance_id',
|
|
31810
|
+
userId: 'user_id',
|
|
31811
|
+
appIdList: 'app_id_list',
|
|
31812
|
+
defaultAppId: 'default_app_id',
|
|
31813
|
+
};
|
|
31814
|
+
}
|
|
31815
|
+
|
|
31816
|
+
static types(): { [key: string]: any } {
|
|
31817
|
+
return {
|
|
31818
|
+
authToken: 'string',
|
|
31819
|
+
productInstanceId: 'string',
|
|
31820
|
+
userId: 'string',
|
|
31821
|
+
appIdList: { 'type': 'array', 'itemType': 'string' },
|
|
31822
|
+
defaultAppId: 'string',
|
|
31823
|
+
};
|
|
31824
|
+
}
|
|
31825
|
+
|
|
31826
|
+
constructor(map?: { [key: string]: any }) {
|
|
31827
|
+
super(map);
|
|
31828
|
+
}
|
|
31829
|
+
}
|
|
31830
|
+
|
|
31831
|
+
export class QueryPromotionUserunvisitedappidResponse extends $tea.Model {
|
|
31832
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
31833
|
+
reqMsgId?: string;
|
|
31834
|
+
// 结果码,一般OK表示调用成功
|
|
31835
|
+
resultCode?: string;
|
|
31836
|
+
// 异常信息的文本描述
|
|
31837
|
+
resultMsg?: string;
|
|
31838
|
+
// 推荐的appid
|
|
31839
|
+
recommendAppId?: string;
|
|
31840
|
+
static names(): { [key: string]: string } {
|
|
31841
|
+
return {
|
|
31842
|
+
reqMsgId: 'req_msg_id',
|
|
31843
|
+
resultCode: 'result_code',
|
|
31844
|
+
resultMsg: 'result_msg',
|
|
31845
|
+
recommendAppId: 'recommend_app_id',
|
|
31846
|
+
};
|
|
31847
|
+
}
|
|
31848
|
+
|
|
31849
|
+
static types(): { [key: string]: any } {
|
|
31850
|
+
return {
|
|
31851
|
+
reqMsgId: 'string',
|
|
31852
|
+
resultCode: 'string',
|
|
31853
|
+
resultMsg: 'string',
|
|
31854
|
+
recommendAppId: 'string',
|
|
31855
|
+
};
|
|
31856
|
+
}
|
|
31857
|
+
|
|
31858
|
+
constructor(map?: { [key: string]: any }) {
|
|
31859
|
+
super(map);
|
|
31860
|
+
}
|
|
31861
|
+
}
|
|
31862
|
+
|
|
31863
|
+
export class QueryInnerSppdemoRequest extends $tea.Model {
|
|
31864
|
+
// OAuth模式下的授权token
|
|
31865
|
+
authToken?: string;
|
|
31866
|
+
productInstanceId?: string;
|
|
31867
|
+
// 租户id
|
|
31868
|
+
tenantId: string;
|
|
31869
|
+
// traceid
|
|
31870
|
+
traceId: string;
|
|
31871
|
+
static names(): { [key: string]: string } {
|
|
31872
|
+
return {
|
|
31873
|
+
authToken: 'auth_token',
|
|
31874
|
+
productInstanceId: 'product_instance_id',
|
|
31875
|
+
tenantId: 'tenant_id',
|
|
31876
|
+
traceId: 'trace_id',
|
|
31877
|
+
};
|
|
31878
|
+
}
|
|
31879
|
+
|
|
31880
|
+
static types(): { [key: string]: any } {
|
|
31881
|
+
return {
|
|
31882
|
+
authToken: 'string',
|
|
31883
|
+
productInstanceId: 'string',
|
|
31884
|
+
tenantId: 'string',
|
|
31885
|
+
traceId: 'string',
|
|
31886
|
+
};
|
|
31887
|
+
}
|
|
31888
|
+
|
|
31889
|
+
constructor(map?: { [key: string]: any }) {
|
|
31890
|
+
super(map);
|
|
31891
|
+
}
|
|
31892
|
+
}
|
|
31893
|
+
|
|
31894
|
+
export class QueryInnerSppdemoResponse extends $tea.Model {
|
|
31895
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
31896
|
+
reqMsgId?: string;
|
|
31897
|
+
// 结果码,一般OK表示调用成功
|
|
31898
|
+
resultCode?: string;
|
|
31899
|
+
// 异常信息的文本描述
|
|
31900
|
+
resultMsg?: string;
|
|
31901
|
+
// 返回结果
|
|
31902
|
+
result?: string;
|
|
31903
|
+
static names(): { [key: string]: string } {
|
|
31904
|
+
return {
|
|
31905
|
+
reqMsgId: 'req_msg_id',
|
|
31906
|
+
resultCode: 'result_code',
|
|
31907
|
+
resultMsg: 'result_msg',
|
|
31908
|
+
result: 'result',
|
|
31909
|
+
};
|
|
31910
|
+
}
|
|
31911
|
+
|
|
31912
|
+
static types(): { [key: string]: any } {
|
|
31913
|
+
return {
|
|
31914
|
+
reqMsgId: 'string',
|
|
31915
|
+
resultCode: 'string',
|
|
31916
|
+
resultMsg: 'string',
|
|
31917
|
+
result: 'string',
|
|
31918
|
+
};
|
|
31919
|
+
}
|
|
31920
|
+
|
|
31921
|
+
constructor(map?: { [key: string]: any }) {
|
|
31922
|
+
super(map);
|
|
31923
|
+
}
|
|
31924
|
+
}
|
|
31925
|
+
|
|
31926
|
+
export class QueryInnerSppdashboardtrafficRequest extends $tea.Model {
|
|
31927
|
+
// OAuth模式下的授权token
|
|
31928
|
+
authToken?: string;
|
|
31929
|
+
productInstanceId?: string;
|
|
31930
|
+
// 租户id
|
|
31931
|
+
tenantId: string;
|
|
31932
|
+
// traceid
|
|
31933
|
+
traceId: string;
|
|
31934
|
+
// 数据日期 yyyyMMdd,不可超过当天,默认当天
|
|
31935
|
+
date?: string;
|
|
31936
|
+
static names(): { [key: string]: string } {
|
|
31937
|
+
return {
|
|
31938
|
+
authToken: 'auth_token',
|
|
31939
|
+
productInstanceId: 'product_instance_id',
|
|
31940
|
+
tenantId: 'tenant_id',
|
|
31941
|
+
traceId: 'trace_id',
|
|
31942
|
+
date: 'date',
|
|
31943
|
+
};
|
|
31944
|
+
}
|
|
31945
|
+
|
|
31946
|
+
static types(): { [key: string]: any } {
|
|
31947
|
+
return {
|
|
31948
|
+
authToken: 'string',
|
|
31949
|
+
productInstanceId: 'string',
|
|
31950
|
+
tenantId: 'string',
|
|
31951
|
+
traceId: 'string',
|
|
31952
|
+
date: 'string',
|
|
31953
|
+
};
|
|
31954
|
+
}
|
|
31955
|
+
|
|
31956
|
+
constructor(map?: { [key: string]: any }) {
|
|
31957
|
+
super(map);
|
|
31958
|
+
}
|
|
31959
|
+
}
|
|
31960
|
+
|
|
31961
|
+
export class QueryInnerSppdashboardtrafficResponse extends $tea.Model {
|
|
31962
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
31963
|
+
reqMsgId?: string;
|
|
31964
|
+
// 结果码,一般OK表示调用成功
|
|
31965
|
+
resultCode?: string;
|
|
31966
|
+
// 异常信息的文本描述
|
|
31967
|
+
resultMsg?: string;
|
|
31968
|
+
// 流量转化看板,5 项流量指标 + 全链路转化率 + updateTime
|
|
31969
|
+
conversion?: string;
|
|
31970
|
+
// 收入结果看板,当日收入预估 + 平台收入 GAAP + updateTime
|
|
31971
|
+
income?: string;
|
|
31972
|
+
static names(): { [key: string]: string } {
|
|
31973
|
+
return {
|
|
31974
|
+
reqMsgId: 'req_msg_id',
|
|
31975
|
+
resultCode: 'result_code',
|
|
31976
|
+
resultMsg: 'result_msg',
|
|
31977
|
+
conversion: 'conversion',
|
|
31978
|
+
income: 'income',
|
|
31979
|
+
};
|
|
31980
|
+
}
|
|
31981
|
+
|
|
31982
|
+
static types(): { [key: string]: any } {
|
|
31983
|
+
return {
|
|
31984
|
+
reqMsgId: 'string',
|
|
31985
|
+
resultCode: 'string',
|
|
31986
|
+
resultMsg: 'string',
|
|
31987
|
+
conversion: 'string',
|
|
31988
|
+
income: 'string',
|
|
31989
|
+
};
|
|
31990
|
+
}
|
|
31991
|
+
|
|
31992
|
+
constructor(map?: { [key: string]: any }) {
|
|
31993
|
+
super(map);
|
|
31994
|
+
}
|
|
31995
|
+
}
|
|
31996
|
+
|
|
31997
|
+
export class QueryInnerSppdashboardscreeningRequest extends $tea.Model {
|
|
31998
|
+
// OAuth模式下的授权token
|
|
31999
|
+
authToken?: string;
|
|
32000
|
+
productInstanceId?: string;
|
|
32001
|
+
// 租户id
|
|
32002
|
+
tenantId: string;
|
|
32003
|
+
// traceid
|
|
32004
|
+
traceId: string;
|
|
32005
|
+
// 数据日期 yyyyMMdd,不可超过当天
|
|
32006
|
+
date?: string;
|
|
32007
|
+
static names(): { [key: string]: string } {
|
|
32008
|
+
return {
|
|
32009
|
+
authToken: 'auth_token',
|
|
32010
|
+
productInstanceId: 'product_instance_id',
|
|
32011
|
+
tenantId: 'tenant_id',
|
|
32012
|
+
traceId: 'trace_id',
|
|
32013
|
+
date: 'date',
|
|
32014
|
+
};
|
|
32015
|
+
}
|
|
32016
|
+
|
|
32017
|
+
static types(): { [key: string]: any } {
|
|
32018
|
+
return {
|
|
32019
|
+
authToken: 'string',
|
|
32020
|
+
productInstanceId: 'string',
|
|
32021
|
+
tenantId: 'string',
|
|
32022
|
+
traceId: 'string',
|
|
32023
|
+
date: 'string',
|
|
32024
|
+
};
|
|
32025
|
+
}
|
|
32026
|
+
|
|
32027
|
+
constructor(map?: { [key: string]: any }) {
|
|
32028
|
+
super(map);
|
|
32029
|
+
}
|
|
32030
|
+
}
|
|
32031
|
+
|
|
32032
|
+
export class QueryInnerSppdashboardscreeningResponse extends $tea.Model {
|
|
32033
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
32034
|
+
reqMsgId?: string;
|
|
32035
|
+
// 结果码,一般OK表示调用成功
|
|
32036
|
+
resultCode?: string;
|
|
32037
|
+
// 异常信息的文本描述
|
|
32038
|
+
resultMsg?: string;
|
|
32039
|
+
// 前筛商户数据看板
|
|
32040
|
+
merchants?: string;
|
|
32041
|
+
static names(): { [key: string]: string } {
|
|
32042
|
+
return {
|
|
32043
|
+
reqMsgId: 'req_msg_id',
|
|
32044
|
+
resultCode: 'result_code',
|
|
32045
|
+
resultMsg: 'result_msg',
|
|
32046
|
+
merchants: 'merchants',
|
|
32047
|
+
};
|
|
32048
|
+
}
|
|
32049
|
+
|
|
32050
|
+
static types(): { [key: string]: any } {
|
|
32051
|
+
return {
|
|
32052
|
+
reqMsgId: 'string',
|
|
32053
|
+
resultCode: 'string',
|
|
32054
|
+
resultMsg: 'string',
|
|
32055
|
+
merchants: 'string',
|
|
32056
|
+
};
|
|
32057
|
+
}
|
|
32058
|
+
|
|
32059
|
+
constructor(map?: { [key: string]: any }) {
|
|
32060
|
+
super(map);
|
|
32061
|
+
}
|
|
32062
|
+
}
|
|
32063
|
+
|
|
32064
|
+
export class QueryInnerSppdashboardpurchaseRequest extends $tea.Model {
|
|
32065
|
+
// OAuth模式下的授权token
|
|
32066
|
+
authToken?: string;
|
|
32067
|
+
productInstanceId?: string;
|
|
32068
|
+
// 租户id
|
|
32069
|
+
tenantId: string;
|
|
32070
|
+
// traceid
|
|
32071
|
+
traceId: string;
|
|
32072
|
+
// 数据日期 yyyyMMdd
|
|
32073
|
+
date?: string;
|
|
32074
|
+
static names(): { [key: string]: string } {
|
|
32075
|
+
return {
|
|
32076
|
+
authToken: 'auth_token',
|
|
32077
|
+
productInstanceId: 'product_instance_id',
|
|
32078
|
+
tenantId: 'tenant_id',
|
|
32079
|
+
traceId: 'trace_id',
|
|
32080
|
+
date: 'date',
|
|
32081
|
+
};
|
|
32082
|
+
}
|
|
32083
|
+
|
|
32084
|
+
static types(): { [key: string]: any } {
|
|
32085
|
+
return {
|
|
32086
|
+
authToken: 'string',
|
|
32087
|
+
productInstanceId: 'string',
|
|
32088
|
+
tenantId: 'string',
|
|
32089
|
+
traceId: 'string',
|
|
32090
|
+
date: 'string',
|
|
32091
|
+
};
|
|
32092
|
+
}
|
|
32093
|
+
|
|
32094
|
+
constructor(map?: { [key: string]: any }) {
|
|
32095
|
+
super(map);
|
|
32096
|
+
}
|
|
32097
|
+
}
|
|
32098
|
+
|
|
32099
|
+
export class QueryInnerSppdashboardpurchaseResponse extends $tea.Model {
|
|
32100
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
32101
|
+
reqMsgId?: string;
|
|
32102
|
+
// 结果码,一般OK表示调用成功
|
|
32103
|
+
resultCode?: string;
|
|
32104
|
+
// 异常信息的文本描述
|
|
32105
|
+
resultMsg?: string;
|
|
32106
|
+
// 采买总览(目标/当前/达成率)
|
|
32107
|
+
overview?: string;
|
|
32108
|
+
// 各商家采购达成卡
|
|
32109
|
+
merchants?: string;
|
|
32110
|
+
// 商家流量评估(渠道 Top20% + AI 调量)
|
|
32111
|
+
evaluations?: string;
|
|
32112
|
+
static names(): { [key: string]: string } {
|
|
32113
|
+
return {
|
|
32114
|
+
reqMsgId: 'req_msg_id',
|
|
32115
|
+
resultCode: 'result_code',
|
|
32116
|
+
resultMsg: 'result_msg',
|
|
32117
|
+
overview: 'overview',
|
|
32118
|
+
merchants: 'merchants',
|
|
32119
|
+
evaluations: 'evaluations',
|
|
32120
|
+
};
|
|
32121
|
+
}
|
|
32122
|
+
|
|
32123
|
+
static types(): { [key: string]: any } {
|
|
32124
|
+
return {
|
|
32125
|
+
reqMsgId: 'string',
|
|
32126
|
+
resultCode: 'string',
|
|
32127
|
+
resultMsg: 'string',
|
|
32128
|
+
overview: 'string',
|
|
32129
|
+
merchants: 'string',
|
|
32130
|
+
evaluations: 'string',
|
|
32131
|
+
};
|
|
32132
|
+
}
|
|
32133
|
+
|
|
32134
|
+
constructor(map?: { [key: string]: any }) {
|
|
32135
|
+
super(map);
|
|
32136
|
+
}
|
|
32137
|
+
}
|
|
32138
|
+
|
|
32139
|
+
export class QueryInnerSppdashboarddistributionRequest extends $tea.Model {
|
|
32140
|
+
// OAuth模式下的授权token
|
|
32141
|
+
authToken?: string;
|
|
32142
|
+
productInstanceId?: string;
|
|
32143
|
+
// 租户id
|
|
32144
|
+
tenantId: string;
|
|
32145
|
+
// traceid
|
|
32146
|
+
traceId: string;
|
|
32147
|
+
// 数据日期 yyyyMMdd
|
|
32148
|
+
date?: string;
|
|
32149
|
+
// 进件日志增量游标(毫秒);<=0 返回当日最新 logLimit 条
|
|
32150
|
+
sinceTime?: number;
|
|
32151
|
+
// 日志返回条数(最新 logLimit 条,按时间倒序),上限 50
|
|
32152
|
+
logLimit?: number;
|
|
32153
|
+
static names(): { [key: string]: string } {
|
|
32154
|
+
return {
|
|
32155
|
+
authToken: 'auth_token',
|
|
32156
|
+
productInstanceId: 'product_instance_id',
|
|
32157
|
+
tenantId: 'tenant_id',
|
|
32158
|
+
traceId: 'trace_id',
|
|
32159
|
+
date: 'date',
|
|
32160
|
+
sinceTime: 'since_time',
|
|
32161
|
+
logLimit: 'log_limit',
|
|
32162
|
+
};
|
|
32163
|
+
}
|
|
32164
|
+
|
|
32165
|
+
static types(): { [key: string]: any } {
|
|
32166
|
+
return {
|
|
32167
|
+
authToken: 'string',
|
|
32168
|
+
productInstanceId: 'string',
|
|
32169
|
+
tenantId: 'string',
|
|
32170
|
+
traceId: 'string',
|
|
32171
|
+
date: 'string',
|
|
32172
|
+
sinceTime: 'number',
|
|
32173
|
+
logLimit: 'number',
|
|
32174
|
+
};
|
|
32175
|
+
}
|
|
32176
|
+
|
|
32177
|
+
constructor(map?: { [key: string]: any }) {
|
|
32178
|
+
super(map);
|
|
32179
|
+
}
|
|
32180
|
+
}
|
|
32181
|
+
|
|
32182
|
+
export class QueryInnerSppdashboarddistributionResponse extends $tea.Model {
|
|
32183
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
32184
|
+
reqMsgId?: string;
|
|
32185
|
+
// 结果码,一般OK表示调用成功
|
|
32186
|
+
resultCode?: string;
|
|
32187
|
+
// 异常信息的文本描述
|
|
32188
|
+
resultMsg?: string;
|
|
32189
|
+
// 当日总进件量
|
|
32190
|
+
total?: number;
|
|
32191
|
+
// 商家承接量与占比
|
|
32192
|
+
distribution?: string;
|
|
32193
|
+
// 进件实时日志(当日最新 logLimit 条,按时间倒序)
|
|
32194
|
+
logs?: string;
|
|
32195
|
+
static names(): { [key: string]: string } {
|
|
32196
|
+
return {
|
|
32197
|
+
reqMsgId: 'req_msg_id',
|
|
32198
|
+
resultCode: 'result_code',
|
|
32199
|
+
resultMsg: 'result_msg',
|
|
32200
|
+
total: 'total',
|
|
32201
|
+
distribution: 'distribution',
|
|
32202
|
+
logs: 'logs',
|
|
32203
|
+
};
|
|
32204
|
+
}
|
|
32205
|
+
|
|
32206
|
+
static types(): { [key: string]: any } {
|
|
32207
|
+
return {
|
|
32208
|
+
reqMsgId: 'string',
|
|
32209
|
+
resultCode: 'string',
|
|
32210
|
+
resultMsg: 'string',
|
|
32211
|
+
total: 'number',
|
|
32212
|
+
distribution: 'string',
|
|
32213
|
+
logs: 'string',
|
|
32214
|
+
};
|
|
32215
|
+
}
|
|
32216
|
+
|
|
32217
|
+
constructor(map?: { [key: string]: any }) {
|
|
32218
|
+
super(map);
|
|
32219
|
+
}
|
|
32220
|
+
}
|
|
32221
|
+
|
|
32222
|
+
export class QueryInnerSppdashboardsentinelRequest extends $tea.Model {
|
|
32223
|
+
// OAuth模式下的授权token
|
|
32224
|
+
authToken?: string;
|
|
32225
|
+
productInstanceId?: string;
|
|
32226
|
+
// 租户id
|
|
32227
|
+
tenantId: string;
|
|
32228
|
+
// traceid
|
|
32229
|
+
traceId: string;
|
|
32230
|
+
// 数据日期 yyyyMMdd
|
|
32231
|
+
date?: string;
|
|
32232
|
+
// 预警分页页码
|
|
32233
|
+
page?: number;
|
|
32234
|
+
// 预警每页条数,上限 50
|
|
32235
|
+
size?: number;
|
|
32236
|
+
static names(): { [key: string]: string } {
|
|
32237
|
+
return {
|
|
32238
|
+
authToken: 'auth_token',
|
|
32239
|
+
productInstanceId: 'product_instance_id',
|
|
32240
|
+
tenantId: 'tenant_id',
|
|
32241
|
+
traceId: 'trace_id',
|
|
32242
|
+
date: 'date',
|
|
32243
|
+
page: 'page',
|
|
32244
|
+
size: 'size',
|
|
32245
|
+
};
|
|
32246
|
+
}
|
|
32247
|
+
|
|
32248
|
+
static types(): { [key: string]: any } {
|
|
32249
|
+
return {
|
|
32250
|
+
authToken: 'string',
|
|
32251
|
+
productInstanceId: 'string',
|
|
32252
|
+
tenantId: 'string',
|
|
32253
|
+
traceId: 'string',
|
|
32254
|
+
date: 'string',
|
|
32255
|
+
page: 'number',
|
|
32256
|
+
size: 'number',
|
|
32257
|
+
};
|
|
32258
|
+
}
|
|
32259
|
+
|
|
32260
|
+
constructor(map?: { [key: string]: any }) {
|
|
32261
|
+
super(map);
|
|
32262
|
+
}
|
|
32263
|
+
}
|
|
32264
|
+
|
|
32265
|
+
export class QueryInnerSppdashboardsentinelResponse extends $tea.Model {
|
|
32266
|
+
// 请求唯一ID,用于链路跟踪和问题排查
|
|
32267
|
+
reqMsgId?: string;
|
|
32268
|
+
// 结果码,一般OK表示调用成功
|
|
32269
|
+
resultCode?: string;
|
|
32270
|
+
// 异常信息的文本描述
|
|
32271
|
+
resultMsg?: string;
|
|
32272
|
+
// 预警统计(数量/已解决/已处理时效)
|
|
32273
|
+
stats?: string;
|
|
32274
|
+
// 预警明细 + 分页
|
|
32275
|
+
alerts?: string;
|
|
32276
|
+
static names(): { [key: string]: string } {
|
|
32277
|
+
return {
|
|
32278
|
+
reqMsgId: 'req_msg_id',
|
|
32279
|
+
resultCode: 'result_code',
|
|
32280
|
+
resultMsg: 'result_msg',
|
|
32281
|
+
stats: 'stats',
|
|
32282
|
+
alerts: 'alerts',
|
|
32283
|
+
};
|
|
32284
|
+
}
|
|
32285
|
+
|
|
32286
|
+
static types(): { [key: string]: any } {
|
|
32287
|
+
return {
|
|
32288
|
+
reqMsgId: 'string',
|
|
32289
|
+
resultCode: 'string',
|
|
32290
|
+
resultMsg: 'string',
|
|
32291
|
+
stats: 'string',
|
|
32292
|
+
alerts: 'string',
|
|
32293
|
+
};
|
|
32294
|
+
}
|
|
32295
|
+
|
|
32296
|
+
constructor(map?: { [key: string]: any }) {
|
|
32297
|
+
super(map);
|
|
32298
|
+
}
|
|
32299
|
+
}
|
|
32300
|
+
|
|
32301
|
+
export class QueryInnerSppdashboardsummaryRequest extends $tea.Model {
|
|
31156
32302
|
// OAuth模式下的授权token
|
|
31157
32303
|
authToken?: string;
|
|
31158
32304
|
productInstanceId?: string;
|
|
31159
|
-
//
|
|
31160
|
-
|
|
32305
|
+
// 租户id
|
|
32306
|
+
tenantId: string;
|
|
32307
|
+
// traceid
|
|
32308
|
+
traceId: string;
|
|
32309
|
+
// 目标领域:SCREENING 前筛 / PURCHASE 采买 / DISTRIBUTION 分发 / SENTINEL 预警
|
|
32310
|
+
module: string;
|
|
32311
|
+
// 待总结的输入内容(该领域的指标/观察文本)
|
|
32312
|
+
input: string;
|
|
32313
|
+
// 原始数据(补充上下文,可选)
|
|
32314
|
+
rawData?: string;
|
|
32315
|
+
// 数据日期 yyyyMMdd,仅作上下文/记录
|
|
32316
|
+
date?: string;
|
|
31161
32317
|
static names(): { [key: string]: string } {
|
|
31162
32318
|
return {
|
|
31163
32319
|
authToken: 'auth_token',
|
|
31164
32320
|
productInstanceId: 'product_instance_id',
|
|
31165
|
-
|
|
32321
|
+
tenantId: 'tenant_id',
|
|
32322
|
+
traceId: 'trace_id',
|
|
32323
|
+
module: 'module',
|
|
32324
|
+
input: 'input',
|
|
32325
|
+
rawData: 'raw_data',
|
|
32326
|
+
date: 'date',
|
|
31166
32327
|
};
|
|
31167
32328
|
}
|
|
31168
32329
|
|
|
@@ -31170,7 +32331,12 @@ export class GetSignContractcertificateRequest extends $tea.Model {
|
|
|
31170
32331
|
return {
|
|
31171
32332
|
authToken: 'string',
|
|
31172
32333
|
productInstanceId: 'string',
|
|
31173
|
-
|
|
32334
|
+
tenantId: 'string',
|
|
32335
|
+
traceId: 'string',
|
|
32336
|
+
module: 'string',
|
|
32337
|
+
input: 'string',
|
|
32338
|
+
rawData: 'string',
|
|
32339
|
+
date: 'string',
|
|
31174
32340
|
};
|
|
31175
32341
|
}
|
|
31176
32342
|
|
|
@@ -31179,21 +32345,24 @@ export class GetSignContractcertificateRequest extends $tea.Model {
|
|
|
31179
32345
|
}
|
|
31180
32346
|
}
|
|
31181
32347
|
|
|
31182
|
-
export class
|
|
32348
|
+
export class QueryInnerSppdashboardsummaryResponse extends $tea.Model {
|
|
31183
32349
|
// 请求唯一ID,用于链路跟踪和问题排查
|
|
31184
32350
|
reqMsgId?: string;
|
|
31185
32351
|
// 结果码,一般OK表示调用成功
|
|
31186
32352
|
resultCode?: string;
|
|
31187
32353
|
// 异常信息的文本描述
|
|
31188
32354
|
resultMsg?: string;
|
|
31189
|
-
//
|
|
31190
|
-
|
|
32355
|
+
// 回显领域
|
|
32356
|
+
module?: string;
|
|
32357
|
+
// 该领域一句话数据总结
|
|
32358
|
+
summary?: string;
|
|
31191
32359
|
static names(): { [key: string]: string } {
|
|
31192
32360
|
return {
|
|
31193
32361
|
reqMsgId: 'req_msg_id',
|
|
31194
32362
|
resultCode: 'result_code',
|
|
31195
32363
|
resultMsg: 'result_msg',
|
|
31196
|
-
|
|
32364
|
+
module: 'module',
|
|
32365
|
+
summary: 'summary',
|
|
31197
32366
|
};
|
|
31198
32367
|
}
|
|
31199
32368
|
|
|
@@ -31202,7 +32371,8 @@ export class GetSignContractcertificateResponse extends $tea.Model {
|
|
|
31202
32371
|
reqMsgId: 'string',
|
|
31203
32372
|
resultCode: 'string',
|
|
31204
32373
|
resultMsg: 'string',
|
|
31205
|
-
|
|
32374
|
+
module: 'string',
|
|
32375
|
+
summary: 'string',
|
|
31206
32376
|
};
|
|
31207
32377
|
}
|
|
31208
32378
|
|
|
@@ -31211,35 +32381,29 @@ export class GetSignContractcertificateResponse extends $tea.Model {
|
|
|
31211
32381
|
}
|
|
31212
32382
|
}
|
|
31213
32383
|
|
|
31214
|
-
export class
|
|
32384
|
+
export class QueryInnerSppdashboardreasoningRequest extends $tea.Model {
|
|
31215
32385
|
// OAuth模式下的授权token
|
|
31216
32386
|
authToken?: string;
|
|
31217
32387
|
productInstanceId?: string;
|
|
31218
|
-
//
|
|
31219
|
-
|
|
31220
|
-
//
|
|
31221
|
-
|
|
31222
|
-
//
|
|
31223
|
-
|
|
31224
|
-
//
|
|
31225
|
-
|
|
31226
|
-
//
|
|
31227
|
-
|
|
31228
|
-
// 签署人列表
|
|
31229
|
-
signAccountList: SignAccount[];
|
|
31230
|
-
// 签署模板列表
|
|
31231
|
-
templateInfoList: TemplateInfo[];
|
|
32388
|
+
// 租户id
|
|
32389
|
+
tenantId?: string;
|
|
32390
|
+
// traceid
|
|
32391
|
+
traceId?: string;
|
|
32392
|
+
// 数据日期 yyyyMMdd
|
|
32393
|
+
date?: string;
|
|
32394
|
+
// 目标领域:SCREENING 前筛 / PURCHASE 采买 / DISTRIBUTION 分发 / SENTINEL 预警
|
|
32395
|
+
module: string;
|
|
32396
|
+
// 增量游标(毫秒);<=0 返回最近 6 条
|
|
32397
|
+
sinceTime?: string;
|
|
31232
32398
|
static names(): { [key: string]: string } {
|
|
31233
32399
|
return {
|
|
31234
32400
|
authToken: 'auth_token',
|
|
31235
32401
|
productInstanceId: 'product_instance_id',
|
|
31236
|
-
|
|
31237
|
-
|
|
31238
|
-
|
|
31239
|
-
|
|
31240
|
-
|
|
31241
|
-
signAccountList: 'sign_account_list',
|
|
31242
|
-
templateInfoList: 'template_info_list',
|
|
32402
|
+
tenantId: 'tenant_id',
|
|
32403
|
+
traceId: 'trace_id',
|
|
32404
|
+
date: 'date',
|
|
32405
|
+
module: 'module',
|
|
32406
|
+
sinceTime: 'since_time',
|
|
31243
32407
|
};
|
|
31244
32408
|
}
|
|
31245
32409
|
|
|
@@ -31247,13 +32411,11 @@ export class CreateSignFlowRequest extends $tea.Model {
|
|
|
31247
32411
|
return {
|
|
31248
32412
|
authToken: 'string',
|
|
31249
32413
|
productInstanceId: 'string',
|
|
31250
|
-
|
|
31251
|
-
|
|
31252
|
-
|
|
31253
|
-
|
|
31254
|
-
|
|
31255
|
-
signAccountList: { 'type': 'array', 'itemType': SignAccount },
|
|
31256
|
-
templateInfoList: { 'type': 'array', 'itemType': TemplateInfo },
|
|
32414
|
+
tenantId: 'string',
|
|
32415
|
+
traceId: 'string',
|
|
32416
|
+
date: 'string',
|
|
32417
|
+
module: 'string',
|
|
32418
|
+
sinceTime: 'string',
|
|
31257
32419
|
};
|
|
31258
32420
|
}
|
|
31259
32421
|
|
|
@@ -31262,24 +32424,24 @@ export class CreateSignFlowRequest extends $tea.Model {
|
|
|
31262
32424
|
}
|
|
31263
32425
|
}
|
|
31264
32426
|
|
|
31265
|
-
export class
|
|
32427
|
+
export class QueryInnerSppdashboardreasoningResponse extends $tea.Model {
|
|
31266
32428
|
// 请求唯一ID,用于链路跟踪和问题排查
|
|
31267
32429
|
reqMsgId?: string;
|
|
31268
32430
|
// 结果码,一般OK表示调用成功
|
|
31269
32431
|
resultCode?: string;
|
|
31270
32432
|
// 异常信息的文本描述
|
|
31271
32433
|
resultMsg?: string;
|
|
31272
|
-
//
|
|
31273
|
-
|
|
31274
|
-
//
|
|
31275
|
-
|
|
32434
|
+
// 回显领域
|
|
32435
|
+
module?: string;
|
|
32436
|
+
// 该领域思考过程(每条 = 时间 + 一句话摘要)
|
|
32437
|
+
reasoning?: string;
|
|
31276
32438
|
static names(): { [key: string]: string } {
|
|
31277
32439
|
return {
|
|
31278
32440
|
reqMsgId: 'req_msg_id',
|
|
31279
32441
|
resultCode: 'result_code',
|
|
31280
32442
|
resultMsg: 'result_msg',
|
|
31281
|
-
|
|
31282
|
-
|
|
32443
|
+
module: 'module',
|
|
32444
|
+
reasoning: 'reasoning',
|
|
31283
32445
|
};
|
|
31284
32446
|
}
|
|
31285
32447
|
|
|
@@ -31288,8 +32450,8 @@ export class CreateSignFlowResponse extends $tea.Model {
|
|
|
31288
32450
|
reqMsgId: 'string',
|
|
31289
32451
|
resultCode: 'string',
|
|
31290
32452
|
resultMsg: 'string',
|
|
31291
|
-
|
|
31292
|
-
|
|
32453
|
+
module: 'string',
|
|
32454
|
+
reasoning: 'string',
|
|
31293
32455
|
};
|
|
31294
32456
|
}
|
|
31295
32457
|
|
|
@@ -31298,23 +32460,23 @@ export class CreateSignFlowResponse extends $tea.Model {
|
|
|
31298
32460
|
}
|
|
31299
32461
|
}
|
|
31300
32462
|
|
|
31301
|
-
export class
|
|
32463
|
+
export class QueryInnerSppdashboardprefilterRequest extends $tea.Model {
|
|
31302
32464
|
// OAuth模式下的授权token
|
|
31303
32465
|
authToken?: string;
|
|
31304
32466
|
productInstanceId?: string;
|
|
31305
|
-
//
|
|
31306
|
-
|
|
31307
|
-
//
|
|
31308
|
-
|
|
31309
|
-
//
|
|
31310
|
-
|
|
32467
|
+
// 租户id
|
|
32468
|
+
tenantId: string;
|
|
32469
|
+
// traceid
|
|
32470
|
+
traceId: string;
|
|
32471
|
+
// 数据日期 yyyyMMdd,不可超过当天
|
|
32472
|
+
date?: string;
|
|
31311
32473
|
static names(): { [key: string]: string } {
|
|
31312
32474
|
return {
|
|
31313
32475
|
authToken: 'auth_token',
|
|
31314
32476
|
productInstanceId: 'product_instance_id',
|
|
31315
|
-
|
|
31316
|
-
|
|
31317
|
-
|
|
32477
|
+
tenantId: 'tenant_id',
|
|
32478
|
+
traceId: 'trace_id',
|
|
32479
|
+
date: 'date',
|
|
31318
32480
|
};
|
|
31319
32481
|
}
|
|
31320
32482
|
|
|
@@ -31322,9 +32484,9 @@ export class QueryPromotionUserunvisitedappidRequest extends $tea.Model {
|
|
|
31322
32484
|
return {
|
|
31323
32485
|
authToken: 'string',
|
|
31324
32486
|
productInstanceId: 'string',
|
|
31325
|
-
|
|
31326
|
-
|
|
31327
|
-
|
|
32487
|
+
tenantId: 'string',
|
|
32488
|
+
traceId: 'string',
|
|
32489
|
+
date: 'string',
|
|
31328
32490
|
};
|
|
31329
32491
|
}
|
|
31330
32492
|
|
|
@@ -31333,21 +32495,21 @@ export class QueryPromotionUserunvisitedappidRequest extends $tea.Model {
|
|
|
31333
32495
|
}
|
|
31334
32496
|
}
|
|
31335
32497
|
|
|
31336
|
-
export class
|
|
32498
|
+
export class QueryInnerSppdashboardprefilterResponse extends $tea.Model {
|
|
31337
32499
|
// 请求唯一ID,用于链路跟踪和问题排查
|
|
31338
32500
|
reqMsgId?: string;
|
|
31339
32501
|
// 结果码,一般OK表示调用成功
|
|
31340
32502
|
resultCode?: string;
|
|
31341
32503
|
// 异常信息的文本描述
|
|
31342
32504
|
resultMsg?: string;
|
|
31343
|
-
//
|
|
31344
|
-
|
|
32505
|
+
// 前筛商户数据看板
|
|
32506
|
+
merchants?: string;
|
|
31345
32507
|
static names(): { [key: string]: string } {
|
|
31346
32508
|
return {
|
|
31347
32509
|
reqMsgId: 'req_msg_id',
|
|
31348
32510
|
resultCode: 'result_code',
|
|
31349
32511
|
resultMsg: 'result_msg',
|
|
31350
|
-
|
|
32512
|
+
merchants: 'merchants',
|
|
31351
32513
|
};
|
|
31352
32514
|
}
|
|
31353
32515
|
|
|
@@ -31356,7 +32518,7 @@ export class QueryPromotionUserunvisitedappidResponse extends $tea.Model {
|
|
|
31356
32518
|
reqMsgId: 'string',
|
|
31357
32519
|
resultCode: 'string',
|
|
31358
32520
|
resultMsg: 'string',
|
|
31359
|
-
|
|
32521
|
+
merchants: 'string',
|
|
31360
32522
|
};
|
|
31361
32523
|
}
|
|
31362
32524
|
|
|
@@ -34849,7 +36011,7 @@ export default class Client {
|
|
|
34849
36011
|
req_msg_id: AntchainUtil.getNonce(),
|
|
34850
36012
|
access_key: this._accessKeyId,
|
|
34851
36013
|
base_sdk_version: "TeaSDK-2.0",
|
|
34852
|
-
sdk_version: "1.20.
|
|
36014
|
+
sdk_version: "1.20.20",
|
|
34853
36015
|
_prod_code: "ATO",
|
|
34854
36016
|
_prod_channel: "undefined",
|
|
34855
36017
|
};
|
|
@@ -34897,6 +36059,111 @@ export default class Client {
|
|
|
34897
36059
|
throw $tea.newUnretryableError(_lastRequest);
|
|
34898
36060
|
}
|
|
34899
36061
|
|
|
36062
|
+
/**
|
|
36063
|
+
* @remarks
|
|
36064
|
+
* Description: 基础项目搭建
|
|
36065
|
+
* Summary: 基础项目搭建
|
|
36066
|
+
*/
|
|
36067
|
+
async testAgenticnesxusDemo(request: TestAgenticnesxusDemoRequest): Promise<TestAgenticnesxusDemoResponse> {
|
|
36068
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
36069
|
+
let headers : {[key: string ]: string} = { };
|
|
36070
|
+
return await this.testAgenticnesxusDemoEx(request, headers, runtime);
|
|
36071
|
+
}
|
|
36072
|
+
|
|
36073
|
+
/**
|
|
36074
|
+
* @remarks
|
|
36075
|
+
* Description: 基础项目搭建
|
|
36076
|
+
* Summary: 基础项目搭建
|
|
36077
|
+
*/
|
|
36078
|
+
async testAgenticnesxusDemoEx(request: TestAgenticnesxusDemoRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<TestAgenticnesxusDemoResponse> {
|
|
36079
|
+
Util.validateModel(request);
|
|
36080
|
+
return $tea.cast<TestAgenticnesxusDemoResponse>(await this.doRequest("1.0", "antchain.ato.agenticnesxus.demo.test", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new TestAgenticnesxusDemoResponse({}));
|
|
36081
|
+
}
|
|
36082
|
+
|
|
36083
|
+
/**
|
|
36084
|
+
* @remarks
|
|
36085
|
+
* Description: 基础项目搭建-测试连通性
|
|
36086
|
+
* Summary: 基础项目搭建-测试连通性
|
|
36087
|
+
*/
|
|
36088
|
+
async testAgenticnexusDemo(request: TestAgenticnexusDemoRequest): Promise<TestAgenticnexusDemoResponse> {
|
|
36089
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
36090
|
+
let headers : {[key: string ]: string} = { };
|
|
36091
|
+
return await this.testAgenticnexusDemoEx(request, headers, runtime);
|
|
36092
|
+
}
|
|
36093
|
+
|
|
36094
|
+
/**
|
|
36095
|
+
* @remarks
|
|
36096
|
+
* Description: 基础项目搭建-测试连通性
|
|
36097
|
+
* Summary: 基础项目搭建-测试连通性
|
|
36098
|
+
*/
|
|
36099
|
+
async testAgenticnexusDemoEx(request: TestAgenticnexusDemoRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<TestAgenticnexusDemoResponse> {
|
|
36100
|
+
Util.validateModel(request);
|
|
36101
|
+
return $tea.cast<TestAgenticnexusDemoResponse>(await this.doRequest("1.0", "antchain.ato.agenticnexus.demo.test", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new TestAgenticnexusDemoResponse({}));
|
|
36102
|
+
}
|
|
36103
|
+
|
|
36104
|
+
/**
|
|
36105
|
+
* @remarks
|
|
36106
|
+
* Description: 营销大脑看板- 总结
|
|
36107
|
+
* Summary: 营销大脑看板- 总结
|
|
36108
|
+
*/
|
|
36109
|
+
async summaryAgenticnexusDashboard(request: SummaryAgenticnexusDashboardRequest): Promise<SummaryAgenticnexusDashboardResponse> {
|
|
36110
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
36111
|
+
let headers : {[key: string ]: string} = { };
|
|
36112
|
+
return await this.summaryAgenticnexusDashboardEx(request, headers, runtime);
|
|
36113
|
+
}
|
|
36114
|
+
|
|
36115
|
+
/**
|
|
36116
|
+
* @remarks
|
|
36117
|
+
* Description: 营销大脑看板- 总结
|
|
36118
|
+
* Summary: 营销大脑看板- 总结
|
|
36119
|
+
*/
|
|
36120
|
+
async summaryAgenticnexusDashboardEx(request: SummaryAgenticnexusDashboardRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<SummaryAgenticnexusDashboardResponse> {
|
|
36121
|
+
Util.validateModel(request);
|
|
36122
|
+
return $tea.cast<SummaryAgenticnexusDashboardResponse>(await this.doRequest("1.0", "antchain.ato.agenticnexus.dashboard.summary", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new SummaryAgenticnexusDashboardResponse({}));
|
|
36123
|
+
}
|
|
36124
|
+
|
|
36125
|
+
/**
|
|
36126
|
+
* @remarks
|
|
36127
|
+
* Description: AI经营智能体统一invoke接口
|
|
36128
|
+
* Summary: AI经营智能体统一invoke接口
|
|
36129
|
+
*/
|
|
36130
|
+
async invokeAgenticnexusAioperation(request: InvokeAgenticnexusAioperationRequest): Promise<InvokeAgenticnexusAioperationResponse> {
|
|
36131
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
36132
|
+
let headers : {[key: string ]: string} = { };
|
|
36133
|
+
return await this.invokeAgenticnexusAioperationEx(request, headers, runtime);
|
|
36134
|
+
}
|
|
36135
|
+
|
|
36136
|
+
/**
|
|
36137
|
+
* @remarks
|
|
36138
|
+
* Description: AI经营智能体统一invoke接口
|
|
36139
|
+
* Summary: AI经营智能体统一invoke接口
|
|
36140
|
+
*/
|
|
36141
|
+
async invokeAgenticnexusAioperationEx(request: InvokeAgenticnexusAioperationRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<InvokeAgenticnexusAioperationResponse> {
|
|
36142
|
+
Util.validateModel(request);
|
|
36143
|
+
return $tea.cast<InvokeAgenticnexusAioperationResponse>(await this.doRequest("1.0", "antchain.ato.agenticnexus.aioperation.invoke", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new InvokeAgenticnexusAioperationResponse({}));
|
|
36144
|
+
}
|
|
36145
|
+
|
|
36146
|
+
/**
|
|
36147
|
+
* @remarks
|
|
36148
|
+
* Description: AI经营智能体统一invoke接口(长耗时)
|
|
36149
|
+
* Summary: AI经营智能体统一invoke接口(长耗时)
|
|
36150
|
+
*/
|
|
36151
|
+
async invokeAgenticnexusAilongoperation(request: InvokeAgenticnexusAilongoperationRequest): Promise<InvokeAgenticnexusAilongoperationResponse> {
|
|
36152
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
36153
|
+
let headers : {[key: string ]: string} = { };
|
|
36154
|
+
return await this.invokeAgenticnexusAilongoperationEx(request, headers, runtime);
|
|
36155
|
+
}
|
|
36156
|
+
|
|
36157
|
+
/**
|
|
36158
|
+
* @remarks
|
|
36159
|
+
* Description: AI经营智能体统一invoke接口(长耗时)
|
|
36160
|
+
* Summary: AI经营智能体统一invoke接口(长耗时)
|
|
36161
|
+
*/
|
|
36162
|
+
async invokeAgenticnexusAilongoperationEx(request: InvokeAgenticnexusAilongoperationRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<InvokeAgenticnexusAilongoperationResponse> {
|
|
36163
|
+
Util.validateModel(request);
|
|
36164
|
+
return $tea.cast<InvokeAgenticnexusAilongoperationResponse>(await this.doRequest("1.0", "antchain.ato.agenticnexus.ailongoperation.invoke", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new InvokeAgenticnexusAilongoperationResponse({}));
|
|
36165
|
+
}
|
|
36166
|
+
|
|
34900
36167
|
/**
|
|
34901
36168
|
* @remarks
|
|
34902
36169
|
* Description: 支付宝结算到卡交易流水任务创建接口
|
|
@@ -35161,6 +36428,27 @@ export default class Client {
|
|
|
35161
36428
|
return $tea.cast<ExecFundPlanResponse>(await this.doRequest("1.0", "antchain.ato.fund.plan.exec", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new ExecFundPlanResponse({}));
|
|
35162
36429
|
}
|
|
35163
36430
|
|
|
36431
|
+
/**
|
|
36432
|
+
* @remarks
|
|
36433
|
+
* Description: AI经营团队项目,查询租户对应的数据列表
|
|
36434
|
+
* Summary: AI经营团队项目,查询租户对应的数据列表
|
|
36435
|
+
*/
|
|
36436
|
+
async queryInnerAioperationlist(request: QueryInnerAioperationlistRequest): Promise<QueryInnerAioperationlistResponse> {
|
|
36437
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
36438
|
+
let headers : {[key: string ]: string} = { };
|
|
36439
|
+
return await this.queryInnerAioperationlistEx(request, headers, runtime);
|
|
36440
|
+
}
|
|
36441
|
+
|
|
36442
|
+
/**
|
|
36443
|
+
* @remarks
|
|
36444
|
+
* Description: AI经营团队项目,查询租户对应的数据列表
|
|
36445
|
+
* Summary: AI经营团队项目,查询租户对应的数据列表
|
|
36446
|
+
*/
|
|
36447
|
+
async queryInnerAioperationlistEx(request: QueryInnerAioperationlistRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryInnerAioperationlistResponse> {
|
|
36448
|
+
Util.validateModel(request);
|
|
36449
|
+
return $tea.cast<QueryInnerAioperationlistResponse>(await this.doRequest("1.0", "antchain.ato.inner.aioperationlist.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryInnerAioperationlistResponse({}));
|
|
36450
|
+
}
|
|
36451
|
+
|
|
35164
36452
|
/**
|
|
35165
36453
|
* @remarks
|
|
35166
36454
|
* Description: 资产包还款列表查询
|
|
@@ -41142,6 +42430,195 @@ export default class Client {
|
|
|
41142
42430
|
return $tea.cast<QueryPromotionUserunvisitedappidResponse>(await this.doRequest("1.0", "antchain.ato.promotion.userunvisitedappid.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryPromotionUserunvisitedappidResponse({}));
|
|
41143
42431
|
}
|
|
41144
42432
|
|
|
42433
|
+
/**
|
|
42434
|
+
* @remarks
|
|
42435
|
+
* Description: spp(SmartPromotion 智能营销系统)demo测试接口
|
|
42436
|
+
* Summary: spp(SmartPromotion 智能营销系统)demo测试接口
|
|
42437
|
+
*/
|
|
42438
|
+
async queryInnerSppdemo(request: QueryInnerSppdemoRequest): Promise<QueryInnerSppdemoResponse> {
|
|
42439
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
42440
|
+
let headers : {[key: string ]: string} = { };
|
|
42441
|
+
return await this.queryInnerSppdemoEx(request, headers, runtime);
|
|
42442
|
+
}
|
|
42443
|
+
|
|
42444
|
+
/**
|
|
42445
|
+
* @remarks
|
|
42446
|
+
* Description: spp(SmartPromotion 智能营销系统)demo测试接口
|
|
42447
|
+
* Summary: spp(SmartPromotion 智能营销系统)demo测试接口
|
|
42448
|
+
*/
|
|
42449
|
+
async queryInnerSppdemoEx(request: QueryInnerSppdemoRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryInnerSppdemoResponse> {
|
|
42450
|
+
Util.validateModel(request);
|
|
42451
|
+
return $tea.cast<QueryInnerSppdemoResponse>(await this.doRequest("1.0", "antchain.ato.inner.sppdemo.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryInnerSppdemoResponse({}));
|
|
42452
|
+
}
|
|
42453
|
+
|
|
42454
|
+
/**
|
|
42455
|
+
* @remarks
|
|
42456
|
+
* Description: 流量看板查询
|
|
42457
|
+
* Summary: 流量看板查询
|
|
42458
|
+
*/
|
|
42459
|
+
async queryInnerSppdashboardtraffic(request: QueryInnerSppdashboardtrafficRequest): Promise<QueryInnerSppdashboardtrafficResponse> {
|
|
42460
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
42461
|
+
let headers : {[key: string ]: string} = { };
|
|
42462
|
+
return await this.queryInnerSppdashboardtrafficEx(request, headers, runtime);
|
|
42463
|
+
}
|
|
42464
|
+
|
|
42465
|
+
/**
|
|
42466
|
+
* @remarks
|
|
42467
|
+
* Description: 流量看板查询
|
|
42468
|
+
* Summary: 流量看板查询
|
|
42469
|
+
*/
|
|
42470
|
+
async queryInnerSppdashboardtrafficEx(request: QueryInnerSppdashboardtrafficRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryInnerSppdashboardtrafficResponse> {
|
|
42471
|
+
Util.validateModel(request);
|
|
42472
|
+
return $tea.cast<QueryInnerSppdashboardtrafficResponse>(await this.doRequest("1.0", "antchain.ato.inner.sppdashboardtraffic.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryInnerSppdashboardtrafficResponse({}));
|
|
42473
|
+
}
|
|
42474
|
+
|
|
42475
|
+
/**
|
|
42476
|
+
* @remarks
|
|
42477
|
+
* Description: 前筛查询
|
|
42478
|
+
* Summary: 前筛查询
|
|
42479
|
+
*/
|
|
42480
|
+
async queryInnerSppdashboardscreening(request: QueryInnerSppdashboardscreeningRequest): Promise<QueryInnerSppdashboardscreeningResponse> {
|
|
42481
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
42482
|
+
let headers : {[key: string ]: string} = { };
|
|
42483
|
+
return await this.queryInnerSppdashboardscreeningEx(request, headers, runtime);
|
|
42484
|
+
}
|
|
42485
|
+
|
|
42486
|
+
/**
|
|
42487
|
+
* @remarks
|
|
42488
|
+
* Description: 前筛查询
|
|
42489
|
+
* Summary: 前筛查询
|
|
42490
|
+
*/
|
|
42491
|
+
async queryInnerSppdashboardscreeningEx(request: QueryInnerSppdashboardscreeningRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryInnerSppdashboardscreeningResponse> {
|
|
42492
|
+
Util.validateModel(request);
|
|
42493
|
+
return $tea.cast<QueryInnerSppdashboardscreeningResponse>(await this.doRequest("1.0", "antchain.ato.inner.sppdashboardscreening.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryInnerSppdashboardscreeningResponse({}));
|
|
42494
|
+
}
|
|
42495
|
+
|
|
42496
|
+
/**
|
|
42497
|
+
* @remarks
|
|
42498
|
+
* Description: 采买查询
|
|
42499
|
+
* Summary: 采买查询
|
|
42500
|
+
*/
|
|
42501
|
+
async queryInnerSppdashboardpurchase(request: QueryInnerSppdashboardpurchaseRequest): Promise<QueryInnerSppdashboardpurchaseResponse> {
|
|
42502
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
42503
|
+
let headers : {[key: string ]: string} = { };
|
|
42504
|
+
return await this.queryInnerSppdashboardpurchaseEx(request, headers, runtime);
|
|
42505
|
+
}
|
|
42506
|
+
|
|
42507
|
+
/**
|
|
42508
|
+
* @remarks
|
|
42509
|
+
* Description: 采买查询
|
|
42510
|
+
* Summary: 采买查询
|
|
42511
|
+
*/
|
|
42512
|
+
async queryInnerSppdashboardpurchaseEx(request: QueryInnerSppdashboardpurchaseRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryInnerSppdashboardpurchaseResponse> {
|
|
42513
|
+
Util.validateModel(request);
|
|
42514
|
+
return $tea.cast<QueryInnerSppdashboardpurchaseResponse>(await this.doRequest("1.0", "antchain.ato.inner.sppdashboardpurchase.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryInnerSppdashboardpurchaseResponse({}));
|
|
42515
|
+
}
|
|
42516
|
+
|
|
42517
|
+
/**
|
|
42518
|
+
* @remarks
|
|
42519
|
+
* Description: 分发查询
|
|
42520
|
+
* Summary: 分发查询
|
|
42521
|
+
*/
|
|
42522
|
+
async queryInnerSppdashboarddistribution(request: QueryInnerSppdashboarddistributionRequest): Promise<QueryInnerSppdashboarddistributionResponse> {
|
|
42523
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
42524
|
+
let headers : {[key: string ]: string} = { };
|
|
42525
|
+
return await this.queryInnerSppdashboarddistributionEx(request, headers, runtime);
|
|
42526
|
+
}
|
|
42527
|
+
|
|
42528
|
+
/**
|
|
42529
|
+
* @remarks
|
|
42530
|
+
* Description: 分发查询
|
|
42531
|
+
* Summary: 分发查询
|
|
42532
|
+
*/
|
|
42533
|
+
async queryInnerSppdashboarddistributionEx(request: QueryInnerSppdashboarddistributionRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryInnerSppdashboarddistributionResponse> {
|
|
42534
|
+
Util.validateModel(request);
|
|
42535
|
+
return $tea.cast<QueryInnerSppdashboarddistributionResponse>(await this.doRequest("1.0", "antchain.ato.inner.sppdashboarddistribution.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryInnerSppdashboarddistributionResponse({}));
|
|
42536
|
+
}
|
|
42537
|
+
|
|
42538
|
+
/**
|
|
42539
|
+
* @remarks
|
|
42540
|
+
* Description: 预警查询
|
|
42541
|
+
* Summary: 预警查询
|
|
42542
|
+
*/
|
|
42543
|
+
async queryInnerSppdashboardsentinel(request: QueryInnerSppdashboardsentinelRequest): Promise<QueryInnerSppdashboardsentinelResponse> {
|
|
42544
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
42545
|
+
let headers : {[key: string ]: string} = { };
|
|
42546
|
+
return await this.queryInnerSppdashboardsentinelEx(request, headers, runtime);
|
|
42547
|
+
}
|
|
42548
|
+
|
|
42549
|
+
/**
|
|
42550
|
+
* @remarks
|
|
42551
|
+
* Description: 预警查询
|
|
42552
|
+
* Summary: 预警查询
|
|
42553
|
+
*/
|
|
42554
|
+
async queryInnerSppdashboardsentinelEx(request: QueryInnerSppdashboardsentinelRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryInnerSppdashboardsentinelResponse> {
|
|
42555
|
+
Util.validateModel(request);
|
|
42556
|
+
return $tea.cast<QueryInnerSppdashboardsentinelResponse>(await this.doRequest("1.0", "antchain.ato.inner.sppdashboardsentinel.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryInnerSppdashboardsentinelResponse({}));
|
|
42557
|
+
}
|
|
42558
|
+
|
|
42559
|
+
/**
|
|
42560
|
+
* @remarks
|
|
42561
|
+
* Description: 前筛/采买/分发/预警 4 部分的数据总结
|
|
42562
|
+
* Summary: 前筛/采买/分发/预警 4 部分的数据总结
|
|
42563
|
+
*/
|
|
42564
|
+
async queryInnerSppdashboardsummary(request: QueryInnerSppdashboardsummaryRequest): Promise<QueryInnerSppdashboardsummaryResponse> {
|
|
42565
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
42566
|
+
let headers : {[key: string ]: string} = { };
|
|
42567
|
+
return await this.queryInnerSppdashboardsummaryEx(request, headers, runtime);
|
|
42568
|
+
}
|
|
42569
|
+
|
|
42570
|
+
/**
|
|
42571
|
+
* @remarks
|
|
42572
|
+
* Description: 前筛/采买/分发/预警 4 部分的数据总结
|
|
42573
|
+
* Summary: 前筛/采买/分发/预警 4 部分的数据总结
|
|
42574
|
+
*/
|
|
42575
|
+
async queryInnerSppdashboardsummaryEx(request: QueryInnerSppdashboardsummaryRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryInnerSppdashboardsummaryResponse> {
|
|
42576
|
+
Util.validateModel(request);
|
|
42577
|
+
return $tea.cast<QueryInnerSppdashboardsummaryResponse>(await this.doRequest("1.0", "antchain.ato.inner.sppdashboardsummary.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryInnerSppdashboardsummaryResponse({}));
|
|
42578
|
+
}
|
|
42579
|
+
|
|
42580
|
+
/**
|
|
42581
|
+
* @remarks
|
|
42582
|
+
* Description: 思考过程查询
|
|
42583
|
+
* Summary: 思考过程查询
|
|
42584
|
+
*/
|
|
42585
|
+
async queryInnerSppdashboardreasoning(request: QueryInnerSppdashboardreasoningRequest): Promise<QueryInnerSppdashboardreasoningResponse> {
|
|
42586
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
42587
|
+
let headers : {[key: string ]: string} = { };
|
|
42588
|
+
return await this.queryInnerSppdashboardreasoningEx(request, headers, runtime);
|
|
42589
|
+
}
|
|
42590
|
+
|
|
42591
|
+
/**
|
|
42592
|
+
* @remarks
|
|
42593
|
+
* Description: 思考过程查询
|
|
42594
|
+
* Summary: 思考过程查询
|
|
42595
|
+
*/
|
|
42596
|
+
async queryInnerSppdashboardreasoningEx(request: QueryInnerSppdashboardreasoningRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryInnerSppdashboardreasoningResponse> {
|
|
42597
|
+
Util.validateModel(request);
|
|
42598
|
+
return $tea.cast<QueryInnerSppdashboardreasoningResponse>(await this.doRequest("1.0", "antchain.ato.inner.sppdashboardreasoning.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryInnerSppdashboardreasoningResponse({}));
|
|
42599
|
+
}
|
|
42600
|
+
|
|
42601
|
+
/**
|
|
42602
|
+
* @remarks
|
|
42603
|
+
* Description: 前筛查询
|
|
42604
|
+
* Summary: 前筛查询
|
|
42605
|
+
*/
|
|
42606
|
+
async queryInnerSppdashboardprefilter(request: QueryInnerSppdashboardprefilterRequest): Promise<QueryInnerSppdashboardprefilterResponse> {
|
|
42607
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
42608
|
+
let headers : {[key: string ]: string} = { };
|
|
42609
|
+
return await this.queryInnerSppdashboardprefilterEx(request, headers, runtime);
|
|
42610
|
+
}
|
|
42611
|
+
|
|
42612
|
+
/**
|
|
42613
|
+
* @remarks
|
|
42614
|
+
* Description: 前筛查询
|
|
42615
|
+
* Summary: 前筛查询
|
|
42616
|
+
*/
|
|
42617
|
+
async queryInnerSppdashboardprefilterEx(request: QueryInnerSppdashboardprefilterRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<QueryInnerSppdashboardprefilterResponse> {
|
|
42618
|
+
Util.validateModel(request);
|
|
42619
|
+
return $tea.cast<QueryInnerSppdashboardprefilterResponse>(await this.doRequest("1.0", "antchain.ato.inner.sppdashboardprefilter.query", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new QueryInnerSppdashboardprefilterResponse({}));
|
|
42620
|
+
}
|
|
42621
|
+
|
|
41145
42622
|
/**
|
|
41146
42623
|
* @remarks
|
|
41147
42624
|
* Description: 对账saas交易信息同步接口
|