@antchain/riskplus 1.16.42 → 1.16.57
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 +453 -2
- package/dist/client.js +748 -60
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +1143 -138
package/dist/client.d.ts
CHANGED
|
@@ -73,6 +73,19 @@ export declare class InfoCodes extends $tea.Model {
|
|
|
73
73
|
[key: string]: any;
|
|
74
74
|
});
|
|
75
75
|
}
|
|
76
|
+
export declare class ActionParamInfo extends $tea.Model {
|
|
77
|
+
contentType: string;
|
|
78
|
+
actionParam: string[];
|
|
79
|
+
static names(): {
|
|
80
|
+
[key: string]: string;
|
|
81
|
+
};
|
|
82
|
+
static types(): {
|
|
83
|
+
[key: string]: any;
|
|
84
|
+
};
|
|
85
|
+
constructor(map?: {
|
|
86
|
+
[key: string]: any;
|
|
87
|
+
});
|
|
88
|
+
}
|
|
76
89
|
export declare class Contact extends $tea.Model {
|
|
77
90
|
kind: string;
|
|
78
91
|
name: string;
|
|
@@ -597,6 +610,23 @@ export declare class SecurityDataQueryStruct extends $tea.Model {
|
|
|
597
610
|
[key: string]: any;
|
|
598
611
|
});
|
|
599
612
|
}
|
|
613
|
+
export declare class ActionPlanDetailInfo extends $tea.Model {
|
|
614
|
+
sceneStrategyId: number;
|
|
615
|
+
sceneStrategyName: string;
|
|
616
|
+
sceneStrategyStatus: string;
|
|
617
|
+
gmtCreate: string;
|
|
618
|
+
gmtModified: string;
|
|
619
|
+
actionParamInfo: ActionParamInfo[];
|
|
620
|
+
static names(): {
|
|
621
|
+
[key: string]: string;
|
|
622
|
+
};
|
|
623
|
+
static types(): {
|
|
624
|
+
[key: string]: any;
|
|
625
|
+
};
|
|
626
|
+
constructor(map?: {
|
|
627
|
+
[key: string]: any;
|
|
628
|
+
});
|
|
629
|
+
}
|
|
600
630
|
export declare class RiskLabelInfo extends $tea.Model {
|
|
601
631
|
clueDetailType: string;
|
|
602
632
|
dt?: string;
|
|
@@ -845,6 +875,59 @@ export declare class RtopCrowdRiskSummaryResp extends $tea.Model {
|
|
|
845
875
|
[key: string]: any;
|
|
846
876
|
});
|
|
847
877
|
}
|
|
878
|
+
export declare class CommonRobotCallDetail extends $tea.Model {
|
|
879
|
+
extInfo: string;
|
|
880
|
+
resultCode: string;
|
|
881
|
+
customerKey: string;
|
|
882
|
+
currentCallTimes: number;
|
|
883
|
+
keyTemplate: string;
|
|
884
|
+
batchId: string;
|
|
885
|
+
callType: number;
|
|
886
|
+
tag?: string;
|
|
887
|
+
callId: string;
|
|
888
|
+
taskId: number;
|
|
889
|
+
templateId?: number;
|
|
890
|
+
statusCode: number;
|
|
891
|
+
statusDescription: string;
|
|
892
|
+
transferStatusCode: number;
|
|
893
|
+
transferStatus: string;
|
|
894
|
+
agentId?: number;
|
|
895
|
+
agentTag?: string;
|
|
896
|
+
agentExtension?: string;
|
|
897
|
+
importTime: string;
|
|
898
|
+
callBeginTime: string;
|
|
899
|
+
ringTime: number;
|
|
900
|
+
answerTime?: string;
|
|
901
|
+
speakingTime: string;
|
|
902
|
+
speakingDuration: number;
|
|
903
|
+
hangupTime: string;
|
|
904
|
+
speakingTurns: number;
|
|
905
|
+
agentSpeakingTime: string;
|
|
906
|
+
agentSpeakingDuration: number;
|
|
907
|
+
intentTag: string;
|
|
908
|
+
intentDescription: string;
|
|
909
|
+
individualTag?: string;
|
|
910
|
+
keywords?: string;
|
|
911
|
+
hungupType: number;
|
|
912
|
+
sms: string;
|
|
913
|
+
chatRecord?: string;
|
|
914
|
+
chats?: string;
|
|
915
|
+
addWx?: number;
|
|
916
|
+
addWxStatus?: string;
|
|
917
|
+
answerRecall: number;
|
|
918
|
+
properties?: string;
|
|
919
|
+
bizProperties?: string;
|
|
920
|
+
interceptReason?: string;
|
|
921
|
+
static names(): {
|
|
922
|
+
[key: string]: string;
|
|
923
|
+
};
|
|
924
|
+
static types(): {
|
|
925
|
+
[key: string]: any;
|
|
926
|
+
};
|
|
927
|
+
constructor(map?: {
|
|
928
|
+
[key: string]: any;
|
|
929
|
+
});
|
|
930
|
+
}
|
|
848
931
|
export declare class StatisticResult extends $tea.Model {
|
|
849
932
|
validCount: number;
|
|
850
933
|
statisticInfoDetailList: StatisticInfoDetail[];
|
|
@@ -1528,6 +1611,19 @@ export declare class SmsReponse extends $tea.Model {
|
|
|
1528
1611
|
[key: string]: any;
|
|
1529
1612
|
});
|
|
1530
1613
|
}
|
|
1614
|
+
export declare class EventInfo extends $tea.Model {
|
|
1615
|
+
eventCode: string;
|
|
1616
|
+
gmtOccur: string;
|
|
1617
|
+
static names(): {
|
|
1618
|
+
[key: string]: string;
|
|
1619
|
+
};
|
|
1620
|
+
static types(): {
|
|
1621
|
+
[key: string]: any;
|
|
1622
|
+
};
|
|
1623
|
+
constructor(map?: {
|
|
1624
|
+
[key: string]: any;
|
|
1625
|
+
});
|
|
1626
|
+
}
|
|
1531
1627
|
export declare class RepayTrail extends $tea.Model {
|
|
1532
1628
|
period: string;
|
|
1533
1629
|
needAmt: number;
|
|
@@ -1815,6 +1911,40 @@ export declare class ExecSecurityRiskdataserviceResponse extends $tea.Model {
|
|
|
1815
1911
|
[key: string]: any;
|
|
1816
1912
|
});
|
|
1817
1913
|
}
|
|
1914
|
+
export declare class QuerySaasSecurityPolicyRequest extends $tea.Model {
|
|
1915
|
+
authToken?: string;
|
|
1916
|
+
productInstanceId?: string;
|
|
1917
|
+
eventInfo: EventInfo;
|
|
1918
|
+
riskType?: string;
|
|
1919
|
+
static names(): {
|
|
1920
|
+
[key: string]: string;
|
|
1921
|
+
};
|
|
1922
|
+
static types(): {
|
|
1923
|
+
[key: string]: any;
|
|
1924
|
+
};
|
|
1925
|
+
constructor(map?: {
|
|
1926
|
+
[key: string]: any;
|
|
1927
|
+
});
|
|
1928
|
+
}
|
|
1929
|
+
export declare class QuerySaasSecurityPolicyResponse extends $tea.Model {
|
|
1930
|
+
reqMsgId?: string;
|
|
1931
|
+
resultCode?: string;
|
|
1932
|
+
resultMsg?: string;
|
|
1933
|
+
modelDetails?: ModelDetails[];
|
|
1934
|
+
securityId?: string;
|
|
1935
|
+
securityResult?: string;
|
|
1936
|
+
strategyDetails?: StrategyDetails[];
|
|
1937
|
+
dfSceneInfos?: DfSceneInfos[];
|
|
1938
|
+
static names(): {
|
|
1939
|
+
[key: string]: string;
|
|
1940
|
+
};
|
|
1941
|
+
static types(): {
|
|
1942
|
+
[key: string]: any;
|
|
1943
|
+
};
|
|
1944
|
+
constructor(map?: {
|
|
1945
|
+
[key: string]: any;
|
|
1946
|
+
});
|
|
1947
|
+
}
|
|
1818
1948
|
export declare class QueryDubheTestRequest extends $tea.Model {
|
|
1819
1949
|
authToken?: string;
|
|
1820
1950
|
productInstanceId?: string;
|
|
@@ -6291,7 +6421,7 @@ export declare class QueryUmktTenantActionplaninfoRequest extends $tea.Model {
|
|
|
6291
6421
|
productInstanceId?: string;
|
|
6292
6422
|
pageNum?: number;
|
|
6293
6423
|
pageSize?: number;
|
|
6294
|
-
|
|
6424
|
+
contentType: string;
|
|
6295
6425
|
static names(): {
|
|
6296
6426
|
[key: string]: string;
|
|
6297
6427
|
};
|
|
@@ -6499,7 +6629,7 @@ export declare class CallbackUmktSmsUpRequest extends $tea.Model {
|
|
|
6499
6629
|
content: string;
|
|
6500
6630
|
signName: string;
|
|
6501
6631
|
appKey: string;
|
|
6502
|
-
destCode
|
|
6632
|
+
destCode: string;
|
|
6503
6633
|
sequenceId: number;
|
|
6504
6634
|
static names(): {
|
|
6505
6635
|
[key: string]: string;
|
|
@@ -6563,6 +6693,229 @@ export declare class CallbackUmktSmsReportResponse extends $tea.Model {
|
|
|
6563
6693
|
[key: string]: any;
|
|
6564
6694
|
});
|
|
6565
6695
|
}
|
|
6696
|
+
export declare class BatchqueryUmktTenantActionplaninfoRequest extends $tea.Model {
|
|
6697
|
+
authToken?: string;
|
|
6698
|
+
productInstanceId?: string;
|
|
6699
|
+
contentType: string;
|
|
6700
|
+
pageNum: number;
|
|
6701
|
+
pageSize: number;
|
|
6702
|
+
static names(): {
|
|
6703
|
+
[key: string]: string;
|
|
6704
|
+
};
|
|
6705
|
+
static types(): {
|
|
6706
|
+
[key: string]: any;
|
|
6707
|
+
};
|
|
6708
|
+
constructor(map?: {
|
|
6709
|
+
[key: string]: any;
|
|
6710
|
+
});
|
|
6711
|
+
}
|
|
6712
|
+
export declare class BatchqueryUmktTenantActionplaninfoResponse extends $tea.Model {
|
|
6713
|
+
reqMsgId?: string;
|
|
6714
|
+
resultCode?: string;
|
|
6715
|
+
resultMsg?: string;
|
|
6716
|
+
queryResult?: ActionPlanDetailInfo[];
|
|
6717
|
+
totalCount?: number;
|
|
6718
|
+
static names(): {
|
|
6719
|
+
[key: string]: string;
|
|
6720
|
+
};
|
|
6721
|
+
static types(): {
|
|
6722
|
+
[key: string]: any;
|
|
6723
|
+
};
|
|
6724
|
+
constructor(map?: {
|
|
6725
|
+
[key: string]: any;
|
|
6726
|
+
});
|
|
6727
|
+
}
|
|
6728
|
+
export declare class BatchqueryUmktRobotcallDetailRequest extends $tea.Model {
|
|
6729
|
+
authToken?: string;
|
|
6730
|
+
productInstanceId?: string;
|
|
6731
|
+
bizId: string;
|
|
6732
|
+
phoneNumbers: string[];
|
|
6733
|
+
templateType: string;
|
|
6734
|
+
sceneStrategyId: number;
|
|
6735
|
+
intentTags?: string[];
|
|
6736
|
+
callDate?: string;
|
|
6737
|
+
endCallDate?: string;
|
|
6738
|
+
pageNum?: number;
|
|
6739
|
+
pageSize?: number;
|
|
6740
|
+
static names(): {
|
|
6741
|
+
[key: string]: string;
|
|
6742
|
+
};
|
|
6743
|
+
static types(): {
|
|
6744
|
+
[key: string]: any;
|
|
6745
|
+
};
|
|
6746
|
+
constructor(map?: {
|
|
6747
|
+
[key: string]: any;
|
|
6748
|
+
});
|
|
6749
|
+
}
|
|
6750
|
+
export declare class BatchqueryUmktRobotcallDetailResponse extends $tea.Model {
|
|
6751
|
+
reqMsgId?: string;
|
|
6752
|
+
resultCode?: string;
|
|
6753
|
+
resultMsg?: string;
|
|
6754
|
+
outInfo?: string;
|
|
6755
|
+
callInfo?: CommonRobotCallDetail[];
|
|
6756
|
+
static names(): {
|
|
6757
|
+
[key: string]: string;
|
|
6758
|
+
};
|
|
6759
|
+
static types(): {
|
|
6760
|
+
[key: string]: any;
|
|
6761
|
+
};
|
|
6762
|
+
constructor(map?: {
|
|
6763
|
+
[key: string]: any;
|
|
6764
|
+
});
|
|
6765
|
+
}
|
|
6766
|
+
export declare class BatchqueryUmktActionplanDetailRequest extends $tea.Model {
|
|
6767
|
+
authToken?: string;
|
|
6768
|
+
productInstanceId?: string;
|
|
6769
|
+
sceneStrategyId: number[];
|
|
6770
|
+
static names(): {
|
|
6771
|
+
[key: string]: string;
|
|
6772
|
+
};
|
|
6773
|
+
static types(): {
|
|
6774
|
+
[key: string]: any;
|
|
6775
|
+
};
|
|
6776
|
+
constructor(map?: {
|
|
6777
|
+
[key: string]: any;
|
|
6778
|
+
});
|
|
6779
|
+
}
|
|
6780
|
+
export declare class BatchqueryUmktActionplanDetailResponse extends $tea.Model {
|
|
6781
|
+
reqMsgId?: string;
|
|
6782
|
+
resultCode?: string;
|
|
6783
|
+
resultMsg?: string;
|
|
6784
|
+
actionPlanDetailInfo?: ActionPlanDetailInfo[];
|
|
6785
|
+
static names(): {
|
|
6786
|
+
[key: string]: string;
|
|
6787
|
+
};
|
|
6788
|
+
static types(): {
|
|
6789
|
+
[key: string]: any;
|
|
6790
|
+
};
|
|
6791
|
+
constructor(map?: {
|
|
6792
|
+
[key: string]: any;
|
|
6793
|
+
});
|
|
6794
|
+
}
|
|
6795
|
+
export declare class PushRiskplusUmktCommonbackflowRequest extends $tea.Model {
|
|
6796
|
+
authToken?: string;
|
|
6797
|
+
productInstanceId?: string;
|
|
6798
|
+
tenantId: number;
|
|
6799
|
+
backFlowTemplateId: number;
|
|
6800
|
+
backFlowDesc: string;
|
|
6801
|
+
properties: string;
|
|
6802
|
+
static names(): {
|
|
6803
|
+
[key: string]: string;
|
|
6804
|
+
};
|
|
6805
|
+
static types(): {
|
|
6806
|
+
[key: string]: any;
|
|
6807
|
+
};
|
|
6808
|
+
constructor(map?: {
|
|
6809
|
+
[key: string]: any;
|
|
6810
|
+
});
|
|
6811
|
+
}
|
|
6812
|
+
export declare class PushRiskplusUmktCommonbackflowResponse extends $tea.Model {
|
|
6813
|
+
reqMsgId?: string;
|
|
6814
|
+
resultCode?: string;
|
|
6815
|
+
resultMsg?: string;
|
|
6816
|
+
static names(): {
|
|
6817
|
+
[key: string]: string;
|
|
6818
|
+
};
|
|
6819
|
+
static types(): {
|
|
6820
|
+
[key: string]: any;
|
|
6821
|
+
};
|
|
6822
|
+
constructor(map?: {
|
|
6823
|
+
[key: string]: any;
|
|
6824
|
+
});
|
|
6825
|
+
}
|
|
6826
|
+
export declare class PushUmktCommonDataRequest extends $tea.Model {
|
|
6827
|
+
authToken?: string;
|
|
6828
|
+
productInstanceId?: string;
|
|
6829
|
+
eventId: number;
|
|
6830
|
+
properties: string;
|
|
6831
|
+
static names(): {
|
|
6832
|
+
[key: string]: string;
|
|
6833
|
+
};
|
|
6834
|
+
static types(): {
|
|
6835
|
+
[key: string]: any;
|
|
6836
|
+
};
|
|
6837
|
+
constructor(map?: {
|
|
6838
|
+
[key: string]: any;
|
|
6839
|
+
});
|
|
6840
|
+
}
|
|
6841
|
+
export declare class PushUmktCommonDataResponse extends $tea.Model {
|
|
6842
|
+
reqMsgId?: string;
|
|
6843
|
+
resultCode?: string;
|
|
6844
|
+
resultMsg?: string;
|
|
6845
|
+
static names(): {
|
|
6846
|
+
[key: string]: string;
|
|
6847
|
+
};
|
|
6848
|
+
static types(): {
|
|
6849
|
+
[key: string]: any;
|
|
6850
|
+
};
|
|
6851
|
+
constructor(map?: {
|
|
6852
|
+
[key: string]: any;
|
|
6853
|
+
});
|
|
6854
|
+
}
|
|
6855
|
+
export declare class PushUmktCustomerGroupRequest extends $tea.Model {
|
|
6856
|
+
authToken?: string;
|
|
6857
|
+
productInstanceId?: string;
|
|
6858
|
+
eventId: string;
|
|
6859
|
+
properties: string;
|
|
6860
|
+
static names(): {
|
|
6861
|
+
[key: string]: string;
|
|
6862
|
+
};
|
|
6863
|
+
static types(): {
|
|
6864
|
+
[key: string]: any;
|
|
6865
|
+
};
|
|
6866
|
+
constructor(map?: {
|
|
6867
|
+
[key: string]: any;
|
|
6868
|
+
});
|
|
6869
|
+
}
|
|
6870
|
+
export declare class PushUmktCustomerGroupResponse extends $tea.Model {
|
|
6871
|
+
reqMsgId?: string;
|
|
6872
|
+
resultCode?: string;
|
|
6873
|
+
resultMsg?: string;
|
|
6874
|
+
static names(): {
|
|
6875
|
+
[key: string]: string;
|
|
6876
|
+
};
|
|
6877
|
+
static types(): {
|
|
6878
|
+
[key: string]: any;
|
|
6879
|
+
};
|
|
6880
|
+
constructor(map?: {
|
|
6881
|
+
[key: string]: any;
|
|
6882
|
+
});
|
|
6883
|
+
}
|
|
6884
|
+
export declare class BatchqueryUmktTaskDetailRequest extends $tea.Model {
|
|
6885
|
+
authToken?: string;
|
|
6886
|
+
productInstanceId?: string;
|
|
6887
|
+
bizId: string;
|
|
6888
|
+
customerKeys: string[];
|
|
6889
|
+
keyTemplate: string;
|
|
6890
|
+
sceneStrategyId: number;
|
|
6891
|
+
callDate?: string;
|
|
6892
|
+
endCallDate?: string;
|
|
6893
|
+
static names(): {
|
|
6894
|
+
[key: string]: string;
|
|
6895
|
+
};
|
|
6896
|
+
static types(): {
|
|
6897
|
+
[key: string]: any;
|
|
6898
|
+
};
|
|
6899
|
+
constructor(map?: {
|
|
6900
|
+
[key: string]: any;
|
|
6901
|
+
});
|
|
6902
|
+
}
|
|
6903
|
+
export declare class BatchqueryUmktTaskDetailResponse extends $tea.Model {
|
|
6904
|
+
reqMsgId?: string;
|
|
6905
|
+
resultCode?: string;
|
|
6906
|
+
resultMsg?: string;
|
|
6907
|
+
outInfo?: string;
|
|
6908
|
+
callInfo?: CommonRobotCallDetail[];
|
|
6909
|
+
static names(): {
|
|
6910
|
+
[key: string]: string;
|
|
6911
|
+
};
|
|
6912
|
+
static types(): {
|
|
6913
|
+
[key: string]: any;
|
|
6914
|
+
};
|
|
6915
|
+
constructor(map?: {
|
|
6916
|
+
[key: string]: any;
|
|
6917
|
+
});
|
|
6918
|
+
}
|
|
6566
6919
|
export declare class CreateAntcloudGatewayxFileUploadRequest extends $tea.Model {
|
|
6567
6920
|
authToken?: string;
|
|
6568
6921
|
apiCode: string;
|
|
@@ -6725,6 +7078,18 @@ export default class Client {
|
|
|
6725
7078
|
execSecurityRiskdataserviceEx(request: ExecSecurityRiskdataserviceRequest, headers: {
|
|
6726
7079
|
[key: string]: string;
|
|
6727
7080
|
}, runtime: $Util.RuntimeOptions): Promise<ExecSecurityRiskdataserviceResponse>;
|
|
7081
|
+
/**
|
|
7082
|
+
* Description: 风控云SaaS租户调用接口
|
|
7083
|
+
* Summary: 风控云SaaS租户调用接口
|
|
7084
|
+
*/
|
|
7085
|
+
querySaasSecurityPolicy(request: QuerySaasSecurityPolicyRequest): Promise<QuerySaasSecurityPolicyResponse>;
|
|
7086
|
+
/**
|
|
7087
|
+
* Description: 风控云SaaS租户调用接口
|
|
7088
|
+
* Summary: 风控云SaaS租户调用接口
|
|
7089
|
+
*/
|
|
7090
|
+
querySaasSecurityPolicyEx(request: QuerySaasSecurityPolicyRequest, headers: {
|
|
7091
|
+
[key: string]: string;
|
|
7092
|
+
}, runtime: $Util.RuntimeOptions): Promise<QuerySaasSecurityPolicyResponse>;
|
|
6728
7093
|
/**
|
|
6729
7094
|
* Description: 天枢信贷业务系统线下测试环境测试接口
|
|
6730
7095
|
* Summary: 天枢信贷业务系统线下测试接口
|
|
@@ -8383,6 +8748,92 @@ export default class Client {
|
|
|
8383
8748
|
callbackUmktSmsReportEx(request: CallbackUmktSmsReportRequest, headers: {
|
|
8384
8749
|
[key: string]: string;
|
|
8385
8750
|
}, runtime: $Util.RuntimeOptions): Promise<CallbackUmktSmsReportResponse>;
|
|
8751
|
+
/**
|
|
8752
|
+
* Description: 分页查询租户外呼策略
|
|
8753
|
+
* Summary: 营销盾租户场景批量信息查询
|
|
8754
|
+
*/
|
|
8755
|
+
batchqueryUmktTenantActionplaninfo(request: BatchqueryUmktTenantActionplaninfoRequest): Promise<BatchqueryUmktTenantActionplaninfoResponse>;
|
|
8756
|
+
/**
|
|
8757
|
+
* Description: 分页查询租户外呼策略
|
|
8758
|
+
* Summary: 营销盾租户场景批量信息查询
|
|
8759
|
+
*/
|
|
8760
|
+
batchqueryUmktTenantActionplaninfoEx(request: BatchqueryUmktTenantActionplaninfoRequest, headers: {
|
|
8761
|
+
[key: string]: string;
|
|
8762
|
+
}, runtime: $Util.RuntimeOptions): Promise<BatchqueryUmktTenantActionplaninfoResponse>;
|
|
8763
|
+
/**
|
|
8764
|
+
* Description: 营销盾批次外呼内单个/多个手机号查询拨打情况
|
|
8765
|
+
(已下线)
|
|
8766
|
+
* Summary: 营销盾外呼详情查询接口
|
|
8767
|
+
*/
|
|
8768
|
+
batchqueryUmktRobotcallDetail(request: BatchqueryUmktRobotcallDetailRequest): Promise<BatchqueryUmktRobotcallDetailResponse>;
|
|
8769
|
+
/**
|
|
8770
|
+
* Description: 营销盾批次外呼内单个/多个手机号查询拨打情况
|
|
8771
|
+
(已下线)
|
|
8772
|
+
* Summary: 营销盾外呼详情查询接口
|
|
8773
|
+
*/
|
|
8774
|
+
batchqueryUmktRobotcallDetailEx(request: BatchqueryUmktRobotcallDetailRequest, headers: {
|
|
8775
|
+
[key: string]: string;
|
|
8776
|
+
}, runtime: $Util.RuntimeOptions): Promise<BatchqueryUmktRobotcallDetailResponse>;
|
|
8777
|
+
/**
|
|
8778
|
+
* Description: 营销盾查询外呼策略详情
|
|
8779
|
+
* Summary: 营销盾查询外呼策略详情
|
|
8780
|
+
*/
|
|
8781
|
+
batchqueryUmktActionplanDetail(request: BatchqueryUmktActionplanDetailRequest): Promise<BatchqueryUmktActionplanDetailResponse>;
|
|
8782
|
+
/**
|
|
8783
|
+
* Description: 营销盾查询外呼策略详情
|
|
8784
|
+
* Summary: 营销盾查询外呼策略详情
|
|
8785
|
+
*/
|
|
8786
|
+
batchqueryUmktActionplanDetailEx(request: BatchqueryUmktActionplanDetailRequest, headers: {
|
|
8787
|
+
[key: string]: string;
|
|
8788
|
+
}, runtime: $Util.RuntimeOptions): Promise<BatchqueryUmktActionplanDetailResponse>;
|
|
8789
|
+
/**
|
|
8790
|
+
* Description: 营销盾通用回流推送服务
|
|
8791
|
+
* Summary: 营销盾通用回流推送服务
|
|
8792
|
+
*/
|
|
8793
|
+
pushRiskplusUmktCommonbackflow(request: PushRiskplusUmktCommonbackflowRequest): Promise<PushRiskplusUmktCommonbackflowResponse>;
|
|
8794
|
+
/**
|
|
8795
|
+
* Description: 营销盾通用回流推送服务
|
|
8796
|
+
* Summary: 营销盾通用回流推送服务
|
|
8797
|
+
*/
|
|
8798
|
+
pushRiskplusUmktCommonbackflowEx(request: PushRiskplusUmktCommonbackflowRequest, headers: {
|
|
8799
|
+
[key: string]: string;
|
|
8800
|
+
}, runtime: $Util.RuntimeOptions): Promise<PushRiskplusUmktCommonbackflowResponse>;
|
|
8801
|
+
/**
|
|
8802
|
+
* Description: 营销盾通用数据推送服务
|
|
8803
|
+
* Summary: 营销盾通用数据推送服务
|
|
8804
|
+
*/
|
|
8805
|
+
pushUmktCommonData(request: PushUmktCommonDataRequest): Promise<PushUmktCommonDataResponse>;
|
|
8806
|
+
/**
|
|
8807
|
+
* Description: 营销盾通用数据推送服务
|
|
8808
|
+
* Summary: 营销盾通用数据推送服务
|
|
8809
|
+
*/
|
|
8810
|
+
pushUmktCommonDataEx(request: PushUmktCommonDataRequest, headers: {
|
|
8811
|
+
[key: string]: string;
|
|
8812
|
+
}, runtime: $Util.RuntimeOptions): Promise<PushUmktCommonDataResponse>;
|
|
8813
|
+
/**
|
|
8814
|
+
* Description: 营销盾客群推送服务
|
|
8815
|
+
* Summary: 营销盾客群推送服务
|
|
8816
|
+
*/
|
|
8817
|
+
pushUmktCustomerGroup(request: PushUmktCustomerGroupRequest): Promise<PushUmktCustomerGroupResponse>;
|
|
8818
|
+
/**
|
|
8819
|
+
* Description: 营销盾客群推送服务
|
|
8820
|
+
* Summary: 营销盾客群推送服务
|
|
8821
|
+
*/
|
|
8822
|
+
pushUmktCustomerGroupEx(request: PushUmktCustomerGroupRequest, headers: {
|
|
8823
|
+
[key: string]: string;
|
|
8824
|
+
}, runtime: $Util.RuntimeOptions): Promise<PushUmktCustomerGroupResponse>;
|
|
8825
|
+
/**
|
|
8826
|
+
* Description: 触达执行任务详情查询
|
|
8827
|
+
* Summary: 触达执行任务详情查询
|
|
8828
|
+
*/
|
|
8829
|
+
batchqueryUmktTaskDetail(request: BatchqueryUmktTaskDetailRequest): Promise<BatchqueryUmktTaskDetailResponse>;
|
|
8830
|
+
/**
|
|
8831
|
+
* Description: 触达执行任务详情查询
|
|
8832
|
+
* Summary: 触达执行任务详情查询
|
|
8833
|
+
*/
|
|
8834
|
+
batchqueryUmktTaskDetailEx(request: BatchqueryUmktTaskDetailRequest, headers: {
|
|
8835
|
+
[key: string]: string;
|
|
8836
|
+
}, runtime: $Util.RuntimeOptions): Promise<BatchqueryUmktTaskDetailResponse>;
|
|
8386
8837
|
/**
|
|
8387
8838
|
* Description: 创建HTTP PUT提交的文件上传
|
|
8388
8839
|
* Summary: 文件上传创建
|