@antchain/insurance_saas 1.12.49 → 1.12.56
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 +224 -4
- package/dist/client.js +269 -6
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +426 -5
package/dist/client.d.ts
CHANGED
|
@@ -137,6 +137,27 @@ export declare class Config extends $tea.Model {
|
|
|
137
137
|
[key: string]: any;
|
|
138
138
|
});
|
|
139
139
|
}
|
|
140
|
+
export declare class ConversionDataDTO extends $tea.Model {
|
|
141
|
+
/**
|
|
142
|
+
* @example
|
|
143
|
+
* FORMBOOK
|
|
144
|
+
*/
|
|
145
|
+
conversionType: string;
|
|
146
|
+
/**
|
|
147
|
+
* @example
|
|
148
|
+
* 100
|
|
149
|
+
*/
|
|
150
|
+
conversionCount: number;
|
|
151
|
+
static names(): {
|
|
152
|
+
[key: string]: string;
|
|
153
|
+
};
|
|
154
|
+
static types(): {
|
|
155
|
+
[key: string]: any;
|
|
156
|
+
};
|
|
157
|
+
constructor(map?: {
|
|
158
|
+
[key: string]: any;
|
|
159
|
+
});
|
|
160
|
+
}
|
|
140
161
|
export declare class FileNode extends $tea.Model {
|
|
141
162
|
/**
|
|
142
163
|
* @example
|
|
@@ -158,6 +179,62 @@ export declare class FileNode extends $tea.Model {
|
|
|
158
179
|
[key: string]: any;
|
|
159
180
|
});
|
|
160
181
|
}
|
|
182
|
+
export declare class StatisticalDataDTO extends $tea.Model {
|
|
183
|
+
/**
|
|
184
|
+
* @example
|
|
185
|
+
* 2026072000000138312001
|
|
186
|
+
*/
|
|
187
|
+
project: string;
|
|
188
|
+
/**
|
|
189
|
+
* @example
|
|
190
|
+
* 2026072000000138312001
|
|
191
|
+
*/
|
|
192
|
+
dimensionId: string;
|
|
193
|
+
/**
|
|
194
|
+
* @example
|
|
195
|
+
* hour
|
|
196
|
+
*/
|
|
197
|
+
timePeriod: string;
|
|
198
|
+
/**
|
|
199
|
+
* @example
|
|
200
|
+
* yyyy-MM-dd HH:mm
|
|
201
|
+
*/
|
|
202
|
+
startTime: string;
|
|
203
|
+
/**
|
|
204
|
+
* @example
|
|
205
|
+
* yyyy-MM-dd HH:mm
|
|
206
|
+
*/
|
|
207
|
+
endTime: string;
|
|
208
|
+
/**
|
|
209
|
+
* @example
|
|
210
|
+
* 6666.66
|
|
211
|
+
*/
|
|
212
|
+
costMoney: string;
|
|
213
|
+
/**
|
|
214
|
+
* @example
|
|
215
|
+
* 100
|
|
216
|
+
*/
|
|
217
|
+
mediaImpressionCount: number;
|
|
218
|
+
/**
|
|
219
|
+
* @example
|
|
220
|
+
* 100
|
|
221
|
+
*/
|
|
222
|
+
mediaClickCount: number;
|
|
223
|
+
/**
|
|
224
|
+
* @example
|
|
225
|
+
* undefined
|
|
226
|
+
*/
|
|
227
|
+
conversionDataList: ConversionDataDTO[];
|
|
228
|
+
static names(): {
|
|
229
|
+
[key: string]: string;
|
|
230
|
+
};
|
|
231
|
+
static types(): {
|
|
232
|
+
[key: string]: any;
|
|
233
|
+
};
|
|
234
|
+
constructor(map?: {
|
|
235
|
+
[key: string]: any;
|
|
236
|
+
});
|
|
237
|
+
}
|
|
161
238
|
export declare class Insured extends $tea.Model {
|
|
162
239
|
/**
|
|
163
240
|
* @example
|
|
@@ -544,6 +621,107 @@ export declare class NotifyEmbedoemautoinsuranceEventResponse extends $tea.Model
|
|
|
544
621
|
[key: string]: any;
|
|
545
622
|
});
|
|
546
623
|
}
|
|
624
|
+
export declare class CallbackMktMediastatisticaldataRequest extends $tea.Model {
|
|
625
|
+
authToken?: string;
|
|
626
|
+
requestId: string;
|
|
627
|
+
projectId: string;
|
|
628
|
+
mediaSource: string;
|
|
629
|
+
dimension: string;
|
|
630
|
+
statisticalDataList: StatisticalDataDTO[];
|
|
631
|
+
static names(): {
|
|
632
|
+
[key: string]: string;
|
|
633
|
+
};
|
|
634
|
+
static types(): {
|
|
635
|
+
[key: string]: any;
|
|
636
|
+
};
|
|
637
|
+
constructor(map?: {
|
|
638
|
+
[key: string]: any;
|
|
639
|
+
});
|
|
640
|
+
}
|
|
641
|
+
export declare class CallbackMktMediastatisticaldataResponse extends $tea.Model {
|
|
642
|
+
reqMsgId?: string;
|
|
643
|
+
resultCode?: string;
|
|
644
|
+
resultMsg?: string;
|
|
645
|
+
requestId?: string;
|
|
646
|
+
static names(): {
|
|
647
|
+
[key: string]: string;
|
|
648
|
+
};
|
|
649
|
+
static types(): {
|
|
650
|
+
[key: string]: any;
|
|
651
|
+
};
|
|
652
|
+
constructor(map?: {
|
|
653
|
+
[key: string]: any;
|
|
654
|
+
});
|
|
655
|
+
}
|
|
656
|
+
export declare class CallbackMktEffectsimpleRequest extends $tea.Model {
|
|
657
|
+
authToken?: string;
|
|
658
|
+
requestId: string;
|
|
659
|
+
projectId: string;
|
|
660
|
+
marketingMode: string;
|
|
661
|
+
insureShortUrl: string;
|
|
662
|
+
encryptionType: string;
|
|
663
|
+
encryptedUserId: string;
|
|
664
|
+
landingVisitId: string;
|
|
665
|
+
nodeType: string;
|
|
666
|
+
nodeStatus: string;
|
|
667
|
+
eventTime: string;
|
|
668
|
+
static names(): {
|
|
669
|
+
[key: string]: string;
|
|
670
|
+
};
|
|
671
|
+
static types(): {
|
|
672
|
+
[key: string]: any;
|
|
673
|
+
};
|
|
674
|
+
constructor(map?: {
|
|
675
|
+
[key: string]: any;
|
|
676
|
+
});
|
|
677
|
+
}
|
|
678
|
+
export declare class CallbackMktEffectsimpleResponse extends $tea.Model {
|
|
679
|
+
reqMsgId?: string;
|
|
680
|
+
resultCode?: string;
|
|
681
|
+
resultMsg?: string;
|
|
682
|
+
requestId?: string;
|
|
683
|
+
static names(): {
|
|
684
|
+
[key: string]: string;
|
|
685
|
+
};
|
|
686
|
+
static types(): {
|
|
687
|
+
[key: string]: any;
|
|
688
|
+
};
|
|
689
|
+
constructor(map?: {
|
|
690
|
+
[key: string]: any;
|
|
691
|
+
});
|
|
692
|
+
}
|
|
693
|
+
export declare class ApplyMktserviceproviderAudiencecircleRequest extends $tea.Model {
|
|
694
|
+
authToken?: string;
|
|
695
|
+
requestId: string;
|
|
696
|
+
projectId: string;
|
|
697
|
+
bizScene: string;
|
|
698
|
+
encryptionType: string;
|
|
699
|
+
encryptedUserIds: string[];
|
|
700
|
+
static names(): {
|
|
701
|
+
[key: string]: string;
|
|
702
|
+
};
|
|
703
|
+
static types(): {
|
|
704
|
+
[key: string]: any;
|
|
705
|
+
};
|
|
706
|
+
constructor(map?: {
|
|
707
|
+
[key: string]: any;
|
|
708
|
+
});
|
|
709
|
+
}
|
|
710
|
+
export declare class ApplyMktserviceproviderAudiencecircleResponse extends $tea.Model {
|
|
711
|
+
reqMsgId?: string;
|
|
712
|
+
resultCode?: string;
|
|
713
|
+
resultMsg?: string;
|
|
714
|
+
requestId?: string;
|
|
715
|
+
static names(): {
|
|
716
|
+
[key: string]: string;
|
|
717
|
+
};
|
|
718
|
+
static types(): {
|
|
719
|
+
[key: string]: any;
|
|
720
|
+
};
|
|
721
|
+
constructor(map?: {
|
|
722
|
+
[key: string]: any;
|
|
723
|
+
});
|
|
724
|
+
}
|
|
547
725
|
export declare class QueryInquiryRequest extends $tea.Model {
|
|
548
726
|
authToken?: string;
|
|
549
727
|
inquiryNoInner: string;
|
|
@@ -2128,14 +2306,14 @@ export default class Client {
|
|
|
2128
2306
|
}, runtime: $Util.RuntimeOptions): Promise<GetAasButleragentChaturlResponse>;
|
|
2129
2307
|
/**
|
|
2130
2308
|
* @remarks
|
|
2131
|
-
* Description:
|
|
2132
|
-
* Summary:
|
|
2309
|
+
* Description: 保险营销效果回传接口——媒体
|
|
2310
|
+
* Summary: 保险营销效果回传接口——媒体
|
|
2133
2311
|
*/
|
|
2134
2312
|
callbackMktLiveeffect(request: CallbackMktLiveeffectRequest): Promise<CallbackMktLiveeffectResponse>;
|
|
2135
2313
|
/**
|
|
2136
2314
|
* @remarks
|
|
2137
|
-
* Description:
|
|
2138
|
-
* Summary:
|
|
2315
|
+
* Description: 保险营销效果回传接口——媒体
|
|
2316
|
+
* Summary: 保险营销效果回传接口——媒体
|
|
2139
2317
|
*/
|
|
2140
2318
|
callbackMktLiveeffectEx(request: CallbackMktLiveeffectRequest, headers: {
|
|
2141
2319
|
[key: string]: string;
|
|
@@ -2182,6 +2360,48 @@ export default class Client {
|
|
|
2182
2360
|
notifyEmbedoemautoinsuranceEventEx(request: NotifyEmbedoemautoinsuranceEventRequest, headers: {
|
|
2183
2361
|
[key: string]: string;
|
|
2184
2362
|
}, runtime: $Util.RuntimeOptions): Promise<NotifyEmbedoemautoinsuranceEventResponse>;
|
|
2363
|
+
/**
|
|
2364
|
+
* @remarks
|
|
2365
|
+
* Description: 媒体点击统计数据回传
|
|
2366
|
+
* Summary: 媒体点击统计数据回传
|
|
2367
|
+
*/
|
|
2368
|
+
callbackMktMediastatisticaldata(request: CallbackMktMediastatisticaldataRequest): Promise<CallbackMktMediastatisticaldataResponse>;
|
|
2369
|
+
/**
|
|
2370
|
+
* @remarks
|
|
2371
|
+
* Description: 媒体点击统计数据回传
|
|
2372
|
+
* Summary: 媒体点击统计数据回传
|
|
2373
|
+
*/
|
|
2374
|
+
callbackMktMediastatisticaldataEx(request: CallbackMktMediastatisticaldataRequest, headers: {
|
|
2375
|
+
[key: string]: string;
|
|
2376
|
+
}, runtime: $Util.RuntimeOptions): Promise<CallbackMktMediastatisticaldataResponse>;
|
|
2377
|
+
/**
|
|
2378
|
+
* @remarks
|
|
2379
|
+
* Description: 营销效果节点数据(简版)
|
|
2380
|
+
* Summary: 营销效果节点数据(简版)
|
|
2381
|
+
*/
|
|
2382
|
+
callbackMktEffectsimple(request: CallbackMktEffectsimpleRequest): Promise<CallbackMktEffectsimpleResponse>;
|
|
2383
|
+
/**
|
|
2384
|
+
* @remarks
|
|
2385
|
+
* Description: 营销效果节点数据(简版)
|
|
2386
|
+
* Summary: 营销效果节点数据(简版)
|
|
2387
|
+
*/
|
|
2388
|
+
callbackMktEffectsimpleEx(request: CallbackMktEffectsimpleRequest, headers: {
|
|
2389
|
+
[key: string]: string;
|
|
2390
|
+
}, runtime: $Util.RuntimeOptions): Promise<CallbackMktEffectsimpleResponse>;
|
|
2391
|
+
/**
|
|
2392
|
+
* @remarks
|
|
2393
|
+
* Description: 保险营销服务商人群圈选
|
|
2394
|
+
* Summary: 保险营销服务商人群圈选
|
|
2395
|
+
*/
|
|
2396
|
+
applyMktserviceproviderAudiencecircle(request: ApplyMktserviceproviderAudiencecircleRequest): Promise<ApplyMktserviceproviderAudiencecircleResponse>;
|
|
2397
|
+
/**
|
|
2398
|
+
* @remarks
|
|
2399
|
+
* Description: 保险营销服务商人群圈选
|
|
2400
|
+
* Summary: 保险营销服务商人群圈选
|
|
2401
|
+
*/
|
|
2402
|
+
applyMktserviceproviderAudiencecircleEx(request: ApplyMktserviceproviderAudiencecircleRequest, headers: {
|
|
2403
|
+
[key: string]: string;
|
|
2404
|
+
}, runtime: $Util.RuntimeOptions): Promise<ApplyMktserviceproviderAudiencecircleResponse>;
|
|
2185
2405
|
/**
|
|
2186
2406
|
* @remarks
|
|
2187
2407
|
* Description: 保险询报价结果查询
|
package/dist/client.js
CHANGED
|
@@ -22,7 +22,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
22
22
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
23
23
|
};
|
|
24
24
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25
|
-
exports.CreateAntcloudGatewayxFileUploadResponse = exports.CreateAntcloudGatewayxFileUploadRequest = exports.ReceiveBusinessOpportunitiesResponse = exports.ReceiveBusinessOpportunitiesRequest = exports.CallbackMktEffectResponse = exports.CallbackMktEffectRequest = exports.UploadMktFileResponse = exports.UploadMktFileRequest = exports.NotifyAutoinsuranceEventResponse = exports.NotifyAutoinsuranceEventRequest = exports.QueryLeadMarketResponse = exports.QueryLeadMarketRequest = exports.CallbackMarketingPolicycancelResponse = exports.CallbackMarketingPolicycancelRequest = exports.CallbackMarketingEventResponse = exports.CallbackMarketingEventRequest = exports.GetMarketingInsureurlResponse = exports.GetMarketingInsureurlRequest = exports.ReceiveLeadMarketResponse = exports.ReceiveLeadMarketRequest = exports.NotifyInterestSupplierorderResponse = exports.NotifyInterestSupplierorderRequest = exports.QueryInterestSceneorderResponse = exports.QueryInterestSceneorderRequest = exports.GetInterestUrlResponse = exports.GetInterestUrlRequest = exports.NotifyInterestSupplierpolicyResponse = exports.NotifyInterestSupplierpolicyRequest = exports.QueryInterestSuppliersubjectResponse = exports.QueryInterestSuppliersubjectRequest = exports.NotifyInterestScenesubjectResponse = exports.NotifyInterestScenesubjectRequest = exports.UpdateRightplatformApplyinfoResponse = exports.UpdateRightplatformApplyinfoRequest = exports.GetRightplatformUrlResponse = exports.GetRightplatformUrlRequest = exports.GetEmbedoemautoinsuranceUrlResponse = exports.GetEmbedoemautoinsuranceUrlRequest = exports.IssueEmbedcardPaysucResponse = exports.IssueEmbedcardPaysucRequest = exports.GetEmbedcardUrlResponse = exports.GetEmbedcardUrlRequest = exports.QueryReverseCommissionResponse = exports.QueryReverseCommissionRequest = exports.SubmitInvestigateCaseResponse = exports.SubmitInvestigateCaseRequest = exports.ApplyInsureTestResponse = exports.ApplyInsureTestRequest = exports.QueryInsureResultResponse = exports.QueryInsureResultRequest = exports.SyncPolicyResultResponse = exports.SyncPolicyResultRequest = exports.ApplyEndorsementStrategyResponse = exports.ApplyEndorsementStrategyRequest = exports.FinishClaimSettleResponse = exports.FinishClaimSettleRequest = exports.ConfirmClaimSettleResponse = exports.ConfirmClaimSettleRequest = exports.UpdateClaimMaterialResponse = exports.UpdateClaimMaterialRequest = exports.CancelClaimResponse = exports.CancelClaimRequest = exports.ApplyClaimResponse = exports.ApplyClaimRequest = exports.NotifyPolicyResultResponse = exports.NotifyPolicyResultRequest = exports.ApplyInsureResponse = exports.ApplyInsureRequest = exports.QueryPolicyFileResponse = exports.QueryPolicyFileRequest = exports.QueryUnderwritingResponse = exports.QueryUnderwritingRequest = exports.ApplyUnderwritingResponse = exports.ApplyUnderwritingRequest = exports.SyncQuoteResponse = exports.SyncQuoteRequest = exports.QueryDataWeatherResponse = exports.QueryDataWeatherRequest = exports.QueryDataDisasterResponse = exports.QueryDataDisasterRequest = exports.SubmitInquiryResponse = exports.SubmitInquiryRequest = exports.QueryInquiryResponse = exports.QueryInquiryRequest = exports.NotifyEmbedoemautoinsuranceEventResponse = exports.NotifyEmbedoemautoinsuranceEventRequest = exports.CallbackMktMonitordataResponse = exports.CallbackMktMonitordataRequest = exports.ApplyMktRealtimemktResponse = exports.ApplyMktRealtimemktRequest = exports.CallbackMktLiveeffectResponse = exports.CallbackMktLiveeffectRequest = exports.GetAasButleragentChaturlResponse = exports.GetAasButleragentChaturlRequest = exports.GetAasButleragentPlanurlResponse = exports.GetAasButleragentPlanurlRequest = exports.QueryAasButleragentSessionResponse = exports.QueryAasButleragentSessionRequest = exports.XNameValuePair = exports.RealtimeMktAudience = exports.EntrustGuaranteeProduct = exports.Applicant = exports.Insured = exports.FileNode = exports.Config = void 0;
|
|
25
|
+
exports.CreateAntcloudGatewayxFileUploadResponse = exports.CreateAntcloudGatewayxFileUploadRequest = exports.ReceiveBusinessOpportunitiesResponse = exports.ReceiveBusinessOpportunitiesRequest = exports.CallbackMktEffectResponse = exports.CallbackMktEffectRequest = exports.UploadMktFileResponse = exports.UploadMktFileRequest = exports.NotifyAutoinsuranceEventResponse = exports.NotifyAutoinsuranceEventRequest = exports.QueryLeadMarketResponse = exports.QueryLeadMarketRequest = exports.CallbackMarketingPolicycancelResponse = exports.CallbackMarketingPolicycancelRequest = exports.CallbackMarketingEventResponse = exports.CallbackMarketingEventRequest = exports.GetMarketingInsureurlResponse = exports.GetMarketingInsureurlRequest = exports.ReceiveLeadMarketResponse = exports.ReceiveLeadMarketRequest = exports.NotifyInterestSupplierorderResponse = exports.NotifyInterestSupplierorderRequest = exports.QueryInterestSceneorderResponse = exports.QueryInterestSceneorderRequest = exports.GetInterestUrlResponse = exports.GetInterestUrlRequest = exports.NotifyInterestSupplierpolicyResponse = exports.NotifyInterestSupplierpolicyRequest = exports.QueryInterestSuppliersubjectResponse = exports.QueryInterestSuppliersubjectRequest = exports.NotifyInterestScenesubjectResponse = exports.NotifyInterestScenesubjectRequest = exports.UpdateRightplatformApplyinfoResponse = exports.UpdateRightplatformApplyinfoRequest = exports.GetRightplatformUrlResponse = exports.GetRightplatformUrlRequest = exports.GetEmbedoemautoinsuranceUrlResponse = exports.GetEmbedoemautoinsuranceUrlRequest = exports.IssueEmbedcardPaysucResponse = exports.IssueEmbedcardPaysucRequest = exports.GetEmbedcardUrlResponse = exports.GetEmbedcardUrlRequest = exports.QueryReverseCommissionResponse = exports.QueryReverseCommissionRequest = exports.SubmitInvestigateCaseResponse = exports.SubmitInvestigateCaseRequest = exports.ApplyInsureTestResponse = exports.ApplyInsureTestRequest = exports.QueryInsureResultResponse = exports.QueryInsureResultRequest = exports.SyncPolicyResultResponse = exports.SyncPolicyResultRequest = exports.ApplyEndorsementStrategyResponse = exports.ApplyEndorsementStrategyRequest = exports.FinishClaimSettleResponse = exports.FinishClaimSettleRequest = exports.ConfirmClaimSettleResponse = exports.ConfirmClaimSettleRequest = exports.UpdateClaimMaterialResponse = exports.UpdateClaimMaterialRequest = exports.CancelClaimResponse = exports.CancelClaimRequest = exports.ApplyClaimResponse = exports.ApplyClaimRequest = exports.NotifyPolicyResultResponse = exports.NotifyPolicyResultRequest = exports.ApplyInsureResponse = exports.ApplyInsureRequest = exports.QueryPolicyFileResponse = exports.QueryPolicyFileRequest = exports.QueryUnderwritingResponse = exports.QueryUnderwritingRequest = exports.ApplyUnderwritingResponse = exports.ApplyUnderwritingRequest = exports.SyncQuoteResponse = exports.SyncQuoteRequest = exports.QueryDataWeatherResponse = exports.QueryDataWeatherRequest = exports.QueryDataDisasterResponse = exports.QueryDataDisasterRequest = exports.SubmitInquiryResponse = exports.SubmitInquiryRequest = exports.QueryInquiryResponse = exports.QueryInquiryRequest = exports.ApplyMktserviceproviderAudiencecircleResponse = exports.ApplyMktserviceproviderAudiencecircleRequest = exports.CallbackMktEffectsimpleResponse = exports.CallbackMktEffectsimpleRequest = exports.CallbackMktMediastatisticaldataResponse = exports.CallbackMktMediastatisticaldataRequest = exports.NotifyEmbedoemautoinsuranceEventResponse = exports.NotifyEmbedoemautoinsuranceEventRequest = exports.CallbackMktMonitordataResponse = exports.CallbackMktMonitordataRequest = exports.ApplyMktRealtimemktResponse = exports.ApplyMktRealtimemktRequest = exports.CallbackMktLiveeffectResponse = exports.CallbackMktLiveeffectRequest = exports.GetAasButleragentChaturlResponse = exports.GetAasButleragentChaturlRequest = exports.GetAasButleragentPlanurlResponse = exports.GetAasButleragentPlanurlRequest = exports.QueryAasButleragentSessionResponse = exports.QueryAasButleragentSessionRequest = exports.XNameValuePair = exports.RealtimeMktAudience = exports.EntrustGuaranteeProduct = exports.Applicant = exports.Insured = exports.StatisticalDataDTO = exports.FileNode = exports.ConversionDataDTO = exports.Config = void 0;
|
|
26
26
|
// This file is auto-generated, don't edit it
|
|
27
27
|
const alipay_util_1 = __importDefault(require("@antchain/alipay-util"));
|
|
28
28
|
const tea_util_1 = __importStar(require("@alicloud/tea-util")), $Util = tea_util_1;
|
|
@@ -82,6 +82,25 @@ class Config extends $tea.Model {
|
|
|
82
82
|
}
|
|
83
83
|
}
|
|
84
84
|
exports.Config = Config;
|
|
85
|
+
// 转化数据条目
|
|
86
|
+
class ConversionDataDTO extends $tea.Model {
|
|
87
|
+
constructor(map) {
|
|
88
|
+
super(map);
|
|
89
|
+
}
|
|
90
|
+
static names() {
|
|
91
|
+
return {
|
|
92
|
+
conversionType: 'conversion_type',
|
|
93
|
+
conversionCount: 'conversion_count',
|
|
94
|
+
};
|
|
95
|
+
}
|
|
96
|
+
static types() {
|
|
97
|
+
return {
|
|
98
|
+
conversionType: 'string',
|
|
99
|
+
conversionCount: 'number',
|
|
100
|
+
};
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
exports.ConversionDataDTO = ConversionDataDTO;
|
|
85
104
|
// 文件结构
|
|
86
105
|
class FileNode extends $tea.Model {
|
|
87
106
|
constructor(map) {
|
|
@@ -101,6 +120,39 @@ class FileNode extends $tea.Model {
|
|
|
101
120
|
}
|
|
102
121
|
}
|
|
103
122
|
exports.FileNode = FileNode;
|
|
123
|
+
// 媒体统计数据条目
|
|
124
|
+
class StatisticalDataDTO extends $tea.Model {
|
|
125
|
+
constructor(map) {
|
|
126
|
+
super(map);
|
|
127
|
+
}
|
|
128
|
+
static names() {
|
|
129
|
+
return {
|
|
130
|
+
project: 'project',
|
|
131
|
+
dimensionId: 'dimension_id',
|
|
132
|
+
timePeriod: 'time_period',
|
|
133
|
+
startTime: 'start_time',
|
|
134
|
+
endTime: 'end_time',
|
|
135
|
+
costMoney: 'cost_money',
|
|
136
|
+
mediaImpressionCount: 'media_impression_count',
|
|
137
|
+
mediaClickCount: 'media_click_count',
|
|
138
|
+
conversionDataList: 'conversion_data_list',
|
|
139
|
+
};
|
|
140
|
+
}
|
|
141
|
+
static types() {
|
|
142
|
+
return {
|
|
143
|
+
project: 'string',
|
|
144
|
+
dimensionId: 'string',
|
|
145
|
+
timePeriod: 'string',
|
|
146
|
+
startTime: 'string',
|
|
147
|
+
endTime: 'string',
|
|
148
|
+
costMoney: 'string',
|
|
149
|
+
mediaImpressionCount: 'number',
|
|
150
|
+
mediaClickCount: 'number',
|
|
151
|
+
conversionDataList: { 'type': 'array', 'itemType': ConversionDataDTO },
|
|
152
|
+
};
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
exports.StatisticalDataDTO = StatisticalDataDTO;
|
|
104
156
|
// 被保人
|
|
105
157
|
class Insured extends $tea.Model {
|
|
106
158
|
constructor(map) {
|
|
@@ -574,6 +626,160 @@ class NotifyEmbedoemautoinsuranceEventResponse extends $tea.Model {
|
|
|
574
626
|
}
|
|
575
627
|
}
|
|
576
628
|
exports.NotifyEmbedoemautoinsuranceEventResponse = NotifyEmbedoemautoinsuranceEventResponse;
|
|
629
|
+
class CallbackMktMediastatisticaldataRequest extends $tea.Model {
|
|
630
|
+
constructor(map) {
|
|
631
|
+
super(map);
|
|
632
|
+
}
|
|
633
|
+
static names() {
|
|
634
|
+
return {
|
|
635
|
+
authToken: 'auth_token',
|
|
636
|
+
requestId: 'request_id',
|
|
637
|
+
projectId: 'project_id',
|
|
638
|
+
mediaSource: 'media_source',
|
|
639
|
+
dimension: 'dimension',
|
|
640
|
+
statisticalDataList: 'statistical_data_list',
|
|
641
|
+
};
|
|
642
|
+
}
|
|
643
|
+
static types() {
|
|
644
|
+
return {
|
|
645
|
+
authToken: 'string',
|
|
646
|
+
requestId: 'string',
|
|
647
|
+
projectId: 'string',
|
|
648
|
+
mediaSource: 'string',
|
|
649
|
+
dimension: 'string',
|
|
650
|
+
statisticalDataList: { 'type': 'array', 'itemType': StatisticalDataDTO },
|
|
651
|
+
};
|
|
652
|
+
}
|
|
653
|
+
}
|
|
654
|
+
exports.CallbackMktMediastatisticaldataRequest = CallbackMktMediastatisticaldataRequest;
|
|
655
|
+
class CallbackMktMediastatisticaldataResponse extends $tea.Model {
|
|
656
|
+
constructor(map) {
|
|
657
|
+
super(map);
|
|
658
|
+
}
|
|
659
|
+
static names() {
|
|
660
|
+
return {
|
|
661
|
+
reqMsgId: 'req_msg_id',
|
|
662
|
+
resultCode: 'result_code',
|
|
663
|
+
resultMsg: 'result_msg',
|
|
664
|
+
requestId: 'request_id',
|
|
665
|
+
};
|
|
666
|
+
}
|
|
667
|
+
static types() {
|
|
668
|
+
return {
|
|
669
|
+
reqMsgId: 'string',
|
|
670
|
+
resultCode: 'string',
|
|
671
|
+
resultMsg: 'string',
|
|
672
|
+
requestId: 'string',
|
|
673
|
+
};
|
|
674
|
+
}
|
|
675
|
+
}
|
|
676
|
+
exports.CallbackMktMediastatisticaldataResponse = CallbackMktMediastatisticaldataResponse;
|
|
677
|
+
class CallbackMktEffectsimpleRequest extends $tea.Model {
|
|
678
|
+
constructor(map) {
|
|
679
|
+
super(map);
|
|
680
|
+
}
|
|
681
|
+
static names() {
|
|
682
|
+
return {
|
|
683
|
+
authToken: 'auth_token',
|
|
684
|
+
requestId: 'request_id',
|
|
685
|
+
projectId: 'project_id',
|
|
686
|
+
marketingMode: 'marketing_mode',
|
|
687
|
+
insureShortUrl: 'insure_short_url',
|
|
688
|
+
encryptionType: 'encryption_type',
|
|
689
|
+
encryptedUserId: 'encrypted_user_id',
|
|
690
|
+
landingVisitId: 'landing_visit_id',
|
|
691
|
+
nodeType: 'node_type',
|
|
692
|
+
nodeStatus: 'node_status',
|
|
693
|
+
eventTime: 'event_time',
|
|
694
|
+
};
|
|
695
|
+
}
|
|
696
|
+
static types() {
|
|
697
|
+
return {
|
|
698
|
+
authToken: 'string',
|
|
699
|
+
requestId: 'string',
|
|
700
|
+
projectId: 'string',
|
|
701
|
+
marketingMode: 'string',
|
|
702
|
+
insureShortUrl: 'string',
|
|
703
|
+
encryptionType: 'string',
|
|
704
|
+
encryptedUserId: 'string',
|
|
705
|
+
landingVisitId: 'string',
|
|
706
|
+
nodeType: 'string',
|
|
707
|
+
nodeStatus: 'string',
|
|
708
|
+
eventTime: 'string',
|
|
709
|
+
};
|
|
710
|
+
}
|
|
711
|
+
}
|
|
712
|
+
exports.CallbackMktEffectsimpleRequest = CallbackMktEffectsimpleRequest;
|
|
713
|
+
class CallbackMktEffectsimpleResponse extends $tea.Model {
|
|
714
|
+
constructor(map) {
|
|
715
|
+
super(map);
|
|
716
|
+
}
|
|
717
|
+
static names() {
|
|
718
|
+
return {
|
|
719
|
+
reqMsgId: 'req_msg_id',
|
|
720
|
+
resultCode: 'result_code',
|
|
721
|
+
resultMsg: 'result_msg',
|
|
722
|
+
requestId: 'request_id',
|
|
723
|
+
};
|
|
724
|
+
}
|
|
725
|
+
static types() {
|
|
726
|
+
return {
|
|
727
|
+
reqMsgId: 'string',
|
|
728
|
+
resultCode: 'string',
|
|
729
|
+
resultMsg: 'string',
|
|
730
|
+
requestId: 'string',
|
|
731
|
+
};
|
|
732
|
+
}
|
|
733
|
+
}
|
|
734
|
+
exports.CallbackMktEffectsimpleResponse = CallbackMktEffectsimpleResponse;
|
|
735
|
+
class ApplyMktserviceproviderAudiencecircleRequest extends $tea.Model {
|
|
736
|
+
constructor(map) {
|
|
737
|
+
super(map);
|
|
738
|
+
}
|
|
739
|
+
static names() {
|
|
740
|
+
return {
|
|
741
|
+
authToken: 'auth_token',
|
|
742
|
+
requestId: 'request_id',
|
|
743
|
+
projectId: 'project_id',
|
|
744
|
+
bizScene: 'biz_scene',
|
|
745
|
+
encryptionType: 'encryption_type',
|
|
746
|
+
encryptedUserIds: 'encrypted_user_ids',
|
|
747
|
+
};
|
|
748
|
+
}
|
|
749
|
+
static types() {
|
|
750
|
+
return {
|
|
751
|
+
authToken: 'string',
|
|
752
|
+
requestId: 'string',
|
|
753
|
+
projectId: 'string',
|
|
754
|
+
bizScene: 'string',
|
|
755
|
+
encryptionType: 'string',
|
|
756
|
+
encryptedUserIds: { 'type': 'array', 'itemType': 'string' },
|
|
757
|
+
};
|
|
758
|
+
}
|
|
759
|
+
}
|
|
760
|
+
exports.ApplyMktserviceproviderAudiencecircleRequest = ApplyMktserviceproviderAudiencecircleRequest;
|
|
761
|
+
class ApplyMktserviceproviderAudiencecircleResponse extends $tea.Model {
|
|
762
|
+
constructor(map) {
|
|
763
|
+
super(map);
|
|
764
|
+
}
|
|
765
|
+
static names() {
|
|
766
|
+
return {
|
|
767
|
+
reqMsgId: 'req_msg_id',
|
|
768
|
+
resultCode: 'result_code',
|
|
769
|
+
resultMsg: 'result_msg',
|
|
770
|
+
requestId: 'request_id',
|
|
771
|
+
};
|
|
772
|
+
}
|
|
773
|
+
static types() {
|
|
774
|
+
return {
|
|
775
|
+
reqMsgId: 'string',
|
|
776
|
+
resultCode: 'string',
|
|
777
|
+
resultMsg: 'string',
|
|
778
|
+
requestId: 'string',
|
|
779
|
+
};
|
|
780
|
+
}
|
|
781
|
+
}
|
|
782
|
+
exports.ApplyMktserviceproviderAudiencecircleResponse = ApplyMktserviceproviderAudiencecircleResponse;
|
|
577
783
|
class QueryInquiryRequest extends $tea.Model {
|
|
578
784
|
constructor(map) {
|
|
579
785
|
super(map);
|
|
@@ -2966,7 +3172,7 @@ class Client {
|
|
|
2966
3172
|
req_msg_id: alipay_util_1.default.getNonce(),
|
|
2967
3173
|
access_key: this._accessKeyId,
|
|
2968
3174
|
base_sdk_version: "TeaSDK-2.0",
|
|
2969
|
-
sdk_version: "1.12.
|
|
3175
|
+
sdk_version: "1.12.56",
|
|
2970
3176
|
_prod_code: "INSURANCE_SAAS",
|
|
2971
3177
|
_prod_channel: "undefined",
|
|
2972
3178
|
};
|
|
@@ -3062,8 +3268,8 @@ class Client {
|
|
|
3062
3268
|
}
|
|
3063
3269
|
/**
|
|
3064
3270
|
* @remarks
|
|
3065
|
-
* Description:
|
|
3066
|
-
* Summary:
|
|
3271
|
+
* Description: 保险营销效果回传接口——媒体
|
|
3272
|
+
* Summary: 保险营销效果回传接口——媒体
|
|
3067
3273
|
*/
|
|
3068
3274
|
async callbackMktLiveeffect(request) {
|
|
3069
3275
|
let runtime = new $Util.RuntimeOptions({});
|
|
@@ -3072,8 +3278,8 @@ class Client {
|
|
|
3072
3278
|
}
|
|
3073
3279
|
/**
|
|
3074
3280
|
* @remarks
|
|
3075
|
-
* Description:
|
|
3076
|
-
* Summary:
|
|
3281
|
+
* Description: 保险营销效果回传接口——媒体
|
|
3282
|
+
* Summary: 保险营销效果回传接口——媒体
|
|
3077
3283
|
*/
|
|
3078
3284
|
async callbackMktLiveeffectEx(request, headers, runtime) {
|
|
3079
3285
|
tea_util_1.default.validateModel(request);
|
|
@@ -3136,6 +3342,63 @@ class Client {
|
|
|
3136
3342
|
tea_util_1.default.validateModel(request);
|
|
3137
3343
|
return $tea.cast(await this.doRequest("1.0", "antcloud.insurance.embedoemautoinsurance.event.notify", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new NotifyEmbedoemautoinsuranceEventResponse({}));
|
|
3138
3344
|
}
|
|
3345
|
+
/**
|
|
3346
|
+
* @remarks
|
|
3347
|
+
* Description: 媒体点击统计数据回传
|
|
3348
|
+
* Summary: 媒体点击统计数据回传
|
|
3349
|
+
*/
|
|
3350
|
+
async callbackMktMediastatisticaldata(request) {
|
|
3351
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
3352
|
+
let headers = {};
|
|
3353
|
+
return await this.callbackMktMediastatisticaldataEx(request, headers, runtime);
|
|
3354
|
+
}
|
|
3355
|
+
/**
|
|
3356
|
+
* @remarks
|
|
3357
|
+
* Description: 媒体点击统计数据回传
|
|
3358
|
+
* Summary: 媒体点击统计数据回传
|
|
3359
|
+
*/
|
|
3360
|
+
async callbackMktMediastatisticaldataEx(request, headers, runtime) {
|
|
3361
|
+
tea_util_1.default.validateModel(request);
|
|
3362
|
+
return $tea.cast(await this.doRequest("1.0", "antcloud.insurance.mkt.mediastatisticaldata.callback", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new CallbackMktMediastatisticaldataResponse({}));
|
|
3363
|
+
}
|
|
3364
|
+
/**
|
|
3365
|
+
* @remarks
|
|
3366
|
+
* Description: 营销效果节点数据(简版)
|
|
3367
|
+
* Summary: 营销效果节点数据(简版)
|
|
3368
|
+
*/
|
|
3369
|
+
async callbackMktEffectsimple(request) {
|
|
3370
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
3371
|
+
let headers = {};
|
|
3372
|
+
return await this.callbackMktEffectsimpleEx(request, headers, runtime);
|
|
3373
|
+
}
|
|
3374
|
+
/**
|
|
3375
|
+
* @remarks
|
|
3376
|
+
* Description: 营销效果节点数据(简版)
|
|
3377
|
+
* Summary: 营销效果节点数据(简版)
|
|
3378
|
+
*/
|
|
3379
|
+
async callbackMktEffectsimpleEx(request, headers, runtime) {
|
|
3380
|
+
tea_util_1.default.validateModel(request);
|
|
3381
|
+
return $tea.cast(await this.doRequest("1.0", "antcloud.insurance.mkt.effectsimple.callback", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new CallbackMktEffectsimpleResponse({}));
|
|
3382
|
+
}
|
|
3383
|
+
/**
|
|
3384
|
+
* @remarks
|
|
3385
|
+
* Description: 保险营销服务商人群圈选
|
|
3386
|
+
* Summary: 保险营销服务商人群圈选
|
|
3387
|
+
*/
|
|
3388
|
+
async applyMktserviceproviderAudiencecircle(request) {
|
|
3389
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
3390
|
+
let headers = {};
|
|
3391
|
+
return await this.applyMktserviceproviderAudiencecircleEx(request, headers, runtime);
|
|
3392
|
+
}
|
|
3393
|
+
/**
|
|
3394
|
+
* @remarks
|
|
3395
|
+
* Description: 保险营销服务商人群圈选
|
|
3396
|
+
* Summary: 保险营销服务商人群圈选
|
|
3397
|
+
*/
|
|
3398
|
+
async applyMktserviceproviderAudiencecircleEx(request, headers, runtime) {
|
|
3399
|
+
tea_util_1.default.validateModel(request);
|
|
3400
|
+
return $tea.cast(await this.doRequest("1.0", "antcloud.insurance.mktserviceprovider.audiencecircle.apply", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new ApplyMktserviceproviderAudiencecircleResponse({}));
|
|
3401
|
+
}
|
|
3139
3402
|
/**
|
|
3140
3403
|
* @remarks
|
|
3141
3404
|
* Description: 保险询报价结果查询
|