@antchain/riskplus 1.16.43 → 1.16.59
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 +455 -1
- package/dist/client.js +752 -58
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +1151 -134
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
|
};
|
|
@@ -6433,6 +6563,7 @@ export declare class CallbackUmktRobotcallRequest extends $tea.Model {
|
|
|
6433
6563
|
tag?: string;
|
|
6434
6564
|
callId: string;
|
|
6435
6565
|
taskId: number;
|
|
6566
|
+
taskName: string;
|
|
6436
6567
|
templateId?: number;
|
|
6437
6568
|
statusCode: number;
|
|
6438
6569
|
statusDescription: string;
|
|
@@ -6539,6 +6670,8 @@ export declare class CallbackUmktSmsReportRequest extends $tea.Model {
|
|
|
6539
6670
|
bizId: string;
|
|
6540
6671
|
bizProperties: string;
|
|
6541
6672
|
smsType?: string;
|
|
6673
|
+
serviceProvider: string;
|
|
6674
|
+
city?: string;
|
|
6542
6675
|
static names(): {
|
|
6543
6676
|
[key: string]: string;
|
|
6544
6677
|
};
|
|
@@ -6563,6 +6696,229 @@ export declare class CallbackUmktSmsReportResponse extends $tea.Model {
|
|
|
6563
6696
|
[key: string]: any;
|
|
6564
6697
|
});
|
|
6565
6698
|
}
|
|
6699
|
+
export declare class BatchqueryUmktTenantActionplaninfoRequest extends $tea.Model {
|
|
6700
|
+
authToken?: string;
|
|
6701
|
+
productInstanceId?: string;
|
|
6702
|
+
contentType: string;
|
|
6703
|
+
pageNum: number;
|
|
6704
|
+
pageSize: number;
|
|
6705
|
+
static names(): {
|
|
6706
|
+
[key: string]: string;
|
|
6707
|
+
};
|
|
6708
|
+
static types(): {
|
|
6709
|
+
[key: string]: any;
|
|
6710
|
+
};
|
|
6711
|
+
constructor(map?: {
|
|
6712
|
+
[key: string]: any;
|
|
6713
|
+
});
|
|
6714
|
+
}
|
|
6715
|
+
export declare class BatchqueryUmktTenantActionplaninfoResponse extends $tea.Model {
|
|
6716
|
+
reqMsgId?: string;
|
|
6717
|
+
resultCode?: string;
|
|
6718
|
+
resultMsg?: string;
|
|
6719
|
+
queryResult?: ActionPlanDetailInfo[];
|
|
6720
|
+
totalCount?: number;
|
|
6721
|
+
static names(): {
|
|
6722
|
+
[key: string]: string;
|
|
6723
|
+
};
|
|
6724
|
+
static types(): {
|
|
6725
|
+
[key: string]: any;
|
|
6726
|
+
};
|
|
6727
|
+
constructor(map?: {
|
|
6728
|
+
[key: string]: any;
|
|
6729
|
+
});
|
|
6730
|
+
}
|
|
6731
|
+
export declare class BatchqueryUmktRobotcallDetailRequest extends $tea.Model {
|
|
6732
|
+
authToken?: string;
|
|
6733
|
+
productInstanceId?: string;
|
|
6734
|
+
bizId: string;
|
|
6735
|
+
phoneNumbers: string[];
|
|
6736
|
+
templateType: string;
|
|
6737
|
+
sceneStrategyId: number;
|
|
6738
|
+
intentTags?: string[];
|
|
6739
|
+
callDate?: string;
|
|
6740
|
+
endCallDate?: string;
|
|
6741
|
+
pageNum?: number;
|
|
6742
|
+
pageSize?: number;
|
|
6743
|
+
static names(): {
|
|
6744
|
+
[key: string]: string;
|
|
6745
|
+
};
|
|
6746
|
+
static types(): {
|
|
6747
|
+
[key: string]: any;
|
|
6748
|
+
};
|
|
6749
|
+
constructor(map?: {
|
|
6750
|
+
[key: string]: any;
|
|
6751
|
+
});
|
|
6752
|
+
}
|
|
6753
|
+
export declare class BatchqueryUmktRobotcallDetailResponse extends $tea.Model {
|
|
6754
|
+
reqMsgId?: string;
|
|
6755
|
+
resultCode?: string;
|
|
6756
|
+
resultMsg?: string;
|
|
6757
|
+
outInfo?: string;
|
|
6758
|
+
callInfo?: CommonRobotCallDetail[];
|
|
6759
|
+
static names(): {
|
|
6760
|
+
[key: string]: string;
|
|
6761
|
+
};
|
|
6762
|
+
static types(): {
|
|
6763
|
+
[key: string]: any;
|
|
6764
|
+
};
|
|
6765
|
+
constructor(map?: {
|
|
6766
|
+
[key: string]: any;
|
|
6767
|
+
});
|
|
6768
|
+
}
|
|
6769
|
+
export declare class BatchqueryUmktActionplanDetailRequest extends $tea.Model {
|
|
6770
|
+
authToken?: string;
|
|
6771
|
+
productInstanceId?: string;
|
|
6772
|
+
sceneStrategyId: number[];
|
|
6773
|
+
static names(): {
|
|
6774
|
+
[key: string]: string;
|
|
6775
|
+
};
|
|
6776
|
+
static types(): {
|
|
6777
|
+
[key: string]: any;
|
|
6778
|
+
};
|
|
6779
|
+
constructor(map?: {
|
|
6780
|
+
[key: string]: any;
|
|
6781
|
+
});
|
|
6782
|
+
}
|
|
6783
|
+
export declare class BatchqueryUmktActionplanDetailResponse extends $tea.Model {
|
|
6784
|
+
reqMsgId?: string;
|
|
6785
|
+
resultCode?: string;
|
|
6786
|
+
resultMsg?: string;
|
|
6787
|
+
actionPlanDetailInfo?: ActionPlanDetailInfo[];
|
|
6788
|
+
static names(): {
|
|
6789
|
+
[key: string]: string;
|
|
6790
|
+
};
|
|
6791
|
+
static types(): {
|
|
6792
|
+
[key: string]: any;
|
|
6793
|
+
};
|
|
6794
|
+
constructor(map?: {
|
|
6795
|
+
[key: string]: any;
|
|
6796
|
+
});
|
|
6797
|
+
}
|
|
6798
|
+
export declare class PushRiskplusUmktCommonbackflowRequest extends $tea.Model {
|
|
6799
|
+
authToken?: string;
|
|
6800
|
+
productInstanceId?: string;
|
|
6801
|
+
tenantId: number;
|
|
6802
|
+
backFlowTemplateId: number;
|
|
6803
|
+
backFlowDesc: string;
|
|
6804
|
+
properties: string;
|
|
6805
|
+
static names(): {
|
|
6806
|
+
[key: string]: string;
|
|
6807
|
+
};
|
|
6808
|
+
static types(): {
|
|
6809
|
+
[key: string]: any;
|
|
6810
|
+
};
|
|
6811
|
+
constructor(map?: {
|
|
6812
|
+
[key: string]: any;
|
|
6813
|
+
});
|
|
6814
|
+
}
|
|
6815
|
+
export declare class PushRiskplusUmktCommonbackflowResponse extends $tea.Model {
|
|
6816
|
+
reqMsgId?: string;
|
|
6817
|
+
resultCode?: string;
|
|
6818
|
+
resultMsg?: string;
|
|
6819
|
+
static names(): {
|
|
6820
|
+
[key: string]: string;
|
|
6821
|
+
};
|
|
6822
|
+
static types(): {
|
|
6823
|
+
[key: string]: any;
|
|
6824
|
+
};
|
|
6825
|
+
constructor(map?: {
|
|
6826
|
+
[key: string]: any;
|
|
6827
|
+
});
|
|
6828
|
+
}
|
|
6829
|
+
export declare class PushUmktCommonDataRequest extends $tea.Model {
|
|
6830
|
+
authToken?: string;
|
|
6831
|
+
productInstanceId?: string;
|
|
6832
|
+
eventId: number;
|
|
6833
|
+
properties: string;
|
|
6834
|
+
static names(): {
|
|
6835
|
+
[key: string]: string;
|
|
6836
|
+
};
|
|
6837
|
+
static types(): {
|
|
6838
|
+
[key: string]: any;
|
|
6839
|
+
};
|
|
6840
|
+
constructor(map?: {
|
|
6841
|
+
[key: string]: any;
|
|
6842
|
+
});
|
|
6843
|
+
}
|
|
6844
|
+
export declare class PushUmktCommonDataResponse extends $tea.Model {
|
|
6845
|
+
reqMsgId?: string;
|
|
6846
|
+
resultCode?: string;
|
|
6847
|
+
resultMsg?: string;
|
|
6848
|
+
static names(): {
|
|
6849
|
+
[key: string]: string;
|
|
6850
|
+
};
|
|
6851
|
+
static types(): {
|
|
6852
|
+
[key: string]: any;
|
|
6853
|
+
};
|
|
6854
|
+
constructor(map?: {
|
|
6855
|
+
[key: string]: any;
|
|
6856
|
+
});
|
|
6857
|
+
}
|
|
6858
|
+
export declare class PushUmktCustomerGroupRequest extends $tea.Model {
|
|
6859
|
+
authToken?: string;
|
|
6860
|
+
productInstanceId?: string;
|
|
6861
|
+
eventId: string;
|
|
6862
|
+
properties: string;
|
|
6863
|
+
static names(): {
|
|
6864
|
+
[key: string]: string;
|
|
6865
|
+
};
|
|
6866
|
+
static types(): {
|
|
6867
|
+
[key: string]: any;
|
|
6868
|
+
};
|
|
6869
|
+
constructor(map?: {
|
|
6870
|
+
[key: string]: any;
|
|
6871
|
+
});
|
|
6872
|
+
}
|
|
6873
|
+
export declare class PushUmktCustomerGroupResponse extends $tea.Model {
|
|
6874
|
+
reqMsgId?: string;
|
|
6875
|
+
resultCode?: string;
|
|
6876
|
+
resultMsg?: string;
|
|
6877
|
+
static names(): {
|
|
6878
|
+
[key: string]: string;
|
|
6879
|
+
};
|
|
6880
|
+
static types(): {
|
|
6881
|
+
[key: string]: any;
|
|
6882
|
+
};
|
|
6883
|
+
constructor(map?: {
|
|
6884
|
+
[key: string]: any;
|
|
6885
|
+
});
|
|
6886
|
+
}
|
|
6887
|
+
export declare class BatchqueryUmktTaskDetailRequest extends $tea.Model {
|
|
6888
|
+
authToken?: string;
|
|
6889
|
+
productInstanceId?: string;
|
|
6890
|
+
bizId: string;
|
|
6891
|
+
customerKeys: string[];
|
|
6892
|
+
keyTemplate: string;
|
|
6893
|
+
sceneStrategyId: number;
|
|
6894
|
+
callDate?: string;
|
|
6895
|
+
endCallDate?: string;
|
|
6896
|
+
static names(): {
|
|
6897
|
+
[key: string]: string;
|
|
6898
|
+
};
|
|
6899
|
+
static types(): {
|
|
6900
|
+
[key: string]: any;
|
|
6901
|
+
};
|
|
6902
|
+
constructor(map?: {
|
|
6903
|
+
[key: string]: any;
|
|
6904
|
+
});
|
|
6905
|
+
}
|
|
6906
|
+
export declare class BatchqueryUmktTaskDetailResponse extends $tea.Model {
|
|
6907
|
+
reqMsgId?: string;
|
|
6908
|
+
resultCode?: string;
|
|
6909
|
+
resultMsg?: string;
|
|
6910
|
+
outInfo?: string;
|
|
6911
|
+
callInfo?: CommonRobotCallDetail[];
|
|
6912
|
+
static names(): {
|
|
6913
|
+
[key: string]: string;
|
|
6914
|
+
};
|
|
6915
|
+
static types(): {
|
|
6916
|
+
[key: string]: any;
|
|
6917
|
+
};
|
|
6918
|
+
constructor(map?: {
|
|
6919
|
+
[key: string]: any;
|
|
6920
|
+
});
|
|
6921
|
+
}
|
|
6566
6922
|
export declare class CreateAntcloudGatewayxFileUploadRequest extends $tea.Model {
|
|
6567
6923
|
authToken?: string;
|
|
6568
6924
|
apiCode: string;
|
|
@@ -6725,6 +7081,18 @@ export default class Client {
|
|
|
6725
7081
|
execSecurityRiskdataserviceEx(request: ExecSecurityRiskdataserviceRequest, headers: {
|
|
6726
7082
|
[key: string]: string;
|
|
6727
7083
|
}, runtime: $Util.RuntimeOptions): Promise<ExecSecurityRiskdataserviceResponse>;
|
|
7084
|
+
/**
|
|
7085
|
+
* Description: 风控云SaaS租户调用接口
|
|
7086
|
+
* Summary: 风控云SaaS租户调用接口
|
|
7087
|
+
*/
|
|
7088
|
+
querySaasSecurityPolicy(request: QuerySaasSecurityPolicyRequest): Promise<QuerySaasSecurityPolicyResponse>;
|
|
7089
|
+
/**
|
|
7090
|
+
* Description: 风控云SaaS租户调用接口
|
|
7091
|
+
* Summary: 风控云SaaS租户调用接口
|
|
7092
|
+
*/
|
|
7093
|
+
querySaasSecurityPolicyEx(request: QuerySaasSecurityPolicyRequest, headers: {
|
|
7094
|
+
[key: string]: string;
|
|
7095
|
+
}, runtime: $Util.RuntimeOptions): Promise<QuerySaasSecurityPolicyResponse>;
|
|
6728
7096
|
/**
|
|
6729
7097
|
* Description: 天枢信贷业务系统线下测试环境测试接口
|
|
6730
7098
|
* Summary: 天枢信贷业务系统线下测试接口
|
|
@@ -8383,6 +8751,92 @@ export default class Client {
|
|
|
8383
8751
|
callbackUmktSmsReportEx(request: CallbackUmktSmsReportRequest, headers: {
|
|
8384
8752
|
[key: string]: string;
|
|
8385
8753
|
}, runtime: $Util.RuntimeOptions): Promise<CallbackUmktSmsReportResponse>;
|
|
8754
|
+
/**
|
|
8755
|
+
* Description: 分页查询租户外呼策略
|
|
8756
|
+
* Summary: 营销盾租户场景批量信息查询
|
|
8757
|
+
*/
|
|
8758
|
+
batchqueryUmktTenantActionplaninfo(request: BatchqueryUmktTenantActionplaninfoRequest): Promise<BatchqueryUmktTenantActionplaninfoResponse>;
|
|
8759
|
+
/**
|
|
8760
|
+
* Description: 分页查询租户外呼策略
|
|
8761
|
+
* Summary: 营销盾租户场景批量信息查询
|
|
8762
|
+
*/
|
|
8763
|
+
batchqueryUmktTenantActionplaninfoEx(request: BatchqueryUmktTenantActionplaninfoRequest, headers: {
|
|
8764
|
+
[key: string]: string;
|
|
8765
|
+
}, runtime: $Util.RuntimeOptions): Promise<BatchqueryUmktTenantActionplaninfoResponse>;
|
|
8766
|
+
/**
|
|
8767
|
+
* Description: 营销盾批次外呼内单个/多个手机号查询拨打情况
|
|
8768
|
+
(已下线)
|
|
8769
|
+
* Summary: 营销盾外呼详情查询接口
|
|
8770
|
+
*/
|
|
8771
|
+
batchqueryUmktRobotcallDetail(request: BatchqueryUmktRobotcallDetailRequest): Promise<BatchqueryUmktRobotcallDetailResponse>;
|
|
8772
|
+
/**
|
|
8773
|
+
* Description: 营销盾批次外呼内单个/多个手机号查询拨打情况
|
|
8774
|
+
(已下线)
|
|
8775
|
+
* Summary: 营销盾外呼详情查询接口
|
|
8776
|
+
*/
|
|
8777
|
+
batchqueryUmktRobotcallDetailEx(request: BatchqueryUmktRobotcallDetailRequest, headers: {
|
|
8778
|
+
[key: string]: string;
|
|
8779
|
+
}, runtime: $Util.RuntimeOptions): Promise<BatchqueryUmktRobotcallDetailResponse>;
|
|
8780
|
+
/**
|
|
8781
|
+
* Description: 营销盾查询外呼策略详情
|
|
8782
|
+
* Summary: 营销盾查询外呼策略详情
|
|
8783
|
+
*/
|
|
8784
|
+
batchqueryUmktActionplanDetail(request: BatchqueryUmktActionplanDetailRequest): Promise<BatchqueryUmktActionplanDetailResponse>;
|
|
8785
|
+
/**
|
|
8786
|
+
* Description: 营销盾查询外呼策略详情
|
|
8787
|
+
* Summary: 营销盾查询外呼策略详情
|
|
8788
|
+
*/
|
|
8789
|
+
batchqueryUmktActionplanDetailEx(request: BatchqueryUmktActionplanDetailRequest, headers: {
|
|
8790
|
+
[key: string]: string;
|
|
8791
|
+
}, runtime: $Util.RuntimeOptions): Promise<BatchqueryUmktActionplanDetailResponse>;
|
|
8792
|
+
/**
|
|
8793
|
+
* Description: 营销盾通用回流推送服务
|
|
8794
|
+
* Summary: 营销盾通用回流推送服务
|
|
8795
|
+
*/
|
|
8796
|
+
pushRiskplusUmktCommonbackflow(request: PushRiskplusUmktCommonbackflowRequest): Promise<PushRiskplusUmktCommonbackflowResponse>;
|
|
8797
|
+
/**
|
|
8798
|
+
* Description: 营销盾通用回流推送服务
|
|
8799
|
+
* Summary: 营销盾通用回流推送服务
|
|
8800
|
+
*/
|
|
8801
|
+
pushRiskplusUmktCommonbackflowEx(request: PushRiskplusUmktCommonbackflowRequest, headers: {
|
|
8802
|
+
[key: string]: string;
|
|
8803
|
+
}, runtime: $Util.RuntimeOptions): Promise<PushRiskplusUmktCommonbackflowResponse>;
|
|
8804
|
+
/**
|
|
8805
|
+
* Description: 营销盾通用数据推送服务
|
|
8806
|
+
* Summary: 营销盾通用数据推送服务
|
|
8807
|
+
*/
|
|
8808
|
+
pushUmktCommonData(request: PushUmktCommonDataRequest): Promise<PushUmktCommonDataResponse>;
|
|
8809
|
+
/**
|
|
8810
|
+
* Description: 营销盾通用数据推送服务
|
|
8811
|
+
* Summary: 营销盾通用数据推送服务
|
|
8812
|
+
*/
|
|
8813
|
+
pushUmktCommonDataEx(request: PushUmktCommonDataRequest, headers: {
|
|
8814
|
+
[key: string]: string;
|
|
8815
|
+
}, runtime: $Util.RuntimeOptions): Promise<PushUmktCommonDataResponse>;
|
|
8816
|
+
/**
|
|
8817
|
+
* Description: 营销盾客群推送服务
|
|
8818
|
+
* Summary: 营销盾客群推送服务
|
|
8819
|
+
*/
|
|
8820
|
+
pushUmktCustomerGroup(request: PushUmktCustomerGroupRequest): Promise<PushUmktCustomerGroupResponse>;
|
|
8821
|
+
/**
|
|
8822
|
+
* Description: 营销盾客群推送服务
|
|
8823
|
+
* Summary: 营销盾客群推送服务
|
|
8824
|
+
*/
|
|
8825
|
+
pushUmktCustomerGroupEx(request: PushUmktCustomerGroupRequest, headers: {
|
|
8826
|
+
[key: string]: string;
|
|
8827
|
+
}, runtime: $Util.RuntimeOptions): Promise<PushUmktCustomerGroupResponse>;
|
|
8828
|
+
/**
|
|
8829
|
+
* Description: 触达执行任务详情查询
|
|
8830
|
+
* Summary: 触达执行任务详情查询
|
|
8831
|
+
*/
|
|
8832
|
+
batchqueryUmktTaskDetail(request: BatchqueryUmktTaskDetailRequest): Promise<BatchqueryUmktTaskDetailResponse>;
|
|
8833
|
+
/**
|
|
8834
|
+
* Description: 触达执行任务详情查询
|
|
8835
|
+
* Summary: 触达执行任务详情查询
|
|
8836
|
+
*/
|
|
8837
|
+
batchqueryUmktTaskDetailEx(request: BatchqueryUmktTaskDetailRequest, headers: {
|
|
8838
|
+
[key: string]: string;
|
|
8839
|
+
}, runtime: $Util.RuntimeOptions): Promise<BatchqueryUmktTaskDetailResponse>;
|
|
8386
8840
|
/**
|
|
8387
8841
|
* Description: 创建HTTP PUT提交的文件上传
|
|
8388
8842
|
* Summary: 文件上传创建
|