@antchain/ato 1.10.16 → 1.10.24

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/src/client.ts CHANGED
@@ -78,6 +78,31 @@ export class Config extends $tea.Model {
78
78
  }
79
79
  }
80
80
 
81
+ // 文件信息
82
+ export class FileInfo extends $tea.Model {
83
+ // 文件名称
84
+ fileName: string;
85
+ // 文件key
86
+ fileKey: string;
87
+ static names(): { [key: string]: string } {
88
+ return {
89
+ fileName: 'file_name',
90
+ fileKey: 'file_key',
91
+ };
92
+ }
93
+
94
+ static types(): { [key: string]: any } {
95
+ return {
96
+ fileName: 'string',
97
+ fileKey: 'string',
98
+ };
99
+ }
100
+
101
+ constructor(map?: { [key: string]: any }) {
102
+ super(map);
103
+ }
104
+ }
105
+
81
106
  // 智租风控-子风险项
82
107
  export class SubRentRiskItem extends $tea.Model {
83
108
  // 风险名称。枚举值:BASE_PERFORMANCE - 基础履约风险;OVERDUE - 逾期风险;MULTI_RENT - 共租风险。
@@ -177,7 +202,7 @@ export class SiteInfo extends $tea.Model {
177
202
  siteName?: string;
178
203
  //
179
204
  // 截图照片
180
- screenshotImage?: string;
205
+ screenshotFile?: FileInfo;
181
206
  // 站点地址
182
207
  siteUrl?: string;
183
208
  // 站点类型
@@ -193,7 +218,7 @@ export class SiteInfo extends $tea.Model {
193
218
  return {
194
219
  tinyAppId: 'tiny_app_id',
195
220
  siteName: 'site_name',
196
- screenshotImage: 'screenshot_image',
221
+ screenshotFile: 'screenshot_file',
197
222
  siteUrl: 'site_url',
198
223
  siteType: 'site_type',
199
224
  };
@@ -203,7 +228,7 @@ export class SiteInfo extends $tea.Model {
203
228
  return {
204
229
  tinyAppId: 'string',
205
230
  siteName: 'string',
206
- screenshotImage: 'string',
231
+ screenshotFile: FileInfo,
207
232
  siteUrl: 'string',
208
233
  siteType: 'string',
209
234
  };
@@ -214,31 +239,6 @@ export class SiteInfo extends $tea.Model {
214
239
  }
215
240
  }
216
241
 
217
- // 文件信息
218
- export class FileInfo extends $tea.Model {
219
- // 文件名称
220
- fileName: string;
221
- // 文件key
222
- fileKey: string;
223
- static names(): { [key: string]: string } {
224
- return {
225
- fileName: 'file_name',
226
- fileKey: 'file_key',
227
- };
228
- }
229
-
230
- static types(): { [key: string]: any } {
231
- return {
232
- fileName: 'string',
233
- fileKey: 'string',
234
- };
235
- }
236
-
237
- constructor(map?: { [key: string]: any }) {
238
- super(map);
239
- }
240
- }
241
-
242
242
  // 智租风控模型结构体
243
243
  export class AppletRiskModel extends $tea.Model {
244
244
  // 智租风控调用结果码,10000 表示调用成功。
@@ -1231,6 +1231,35 @@ export class DeliveryDetail extends $tea.Model {
1231
1231
  }
1232
1232
  }
1233
1233
 
1234
+ // 客服信息
1235
+ export class CustomerServiceInfo extends $tea.Model {
1236
+ // 公司社会统一信息代码
1237
+ merchantId?: string;
1238
+ // 公司名称
1239
+ merchantName?: string;
1240
+ // 处理类型: 商家处理 服务商代处理
1241
+ processType?: string;
1242
+ static names(): { [key: string]: string } {
1243
+ return {
1244
+ merchantId: 'merchant_id',
1245
+ merchantName: 'merchant_name',
1246
+ processType: 'process_type',
1247
+ };
1248
+ }
1249
+
1250
+ static types(): { [key: string]: any } {
1251
+ return {
1252
+ merchantId: 'string',
1253
+ merchantName: 'string',
1254
+ processType: 'string',
1255
+ };
1256
+ }
1257
+
1258
+ constructor(map?: { [key: string]: any }) {
1259
+ super(map);
1260
+ }
1261
+ }
1262
+
1234
1263
  // 经营分账收入模型
1235
1264
  export class OperationDivideTransInModel extends $tea.Model {
1236
1265
  // 分账收入方支付宝用户id, 支付宝2088id
@@ -5611,6 +5640,8 @@ export class QueryInnerMerchantpayexpandResponse extends $tea.Model {
5611
5640
  expandStatus?: string;
5612
5641
  // 进件失败描述
5613
5642
  expandFailReason?: string;
5643
+ // 是否展示进件信息登记入口
5644
+ showCustomerComplaintRegistPortal?: boolean;
5614
5645
  static names(): { [key: string]: string } {
5615
5646
  return {
5616
5647
  reqMsgId: 'req_msg_id',
@@ -5624,6 +5655,7 @@ export class QueryInnerMerchantpayexpandResponse extends $tea.Model {
5624
5655
  expandMode: 'expand_mode',
5625
5656
  expandStatus: 'expand_status',
5626
5657
  expandFailReason: 'expand_fail_reason',
5658
+ showCustomerComplaintRegistPortal: 'show_customer_complaint_regist_portal',
5627
5659
  };
5628
5660
  }
5629
5661
 
@@ -5640,6 +5672,7 @@ export class QueryInnerMerchantpayexpandResponse extends $tea.Model {
5640
5672
  expandMode: 'string',
5641
5673
  expandStatus: 'string',
5642
5674
  expandFailReason: 'string',
5675
+ showCustomerComplaintRegistPortal: 'boolean',
5643
5676
  };
5644
5677
  }
5645
5678
 
@@ -7780,6 +7813,486 @@ export class BatchqueryInnerMarketingscoreResponse extends $tea.Model {
7780
7813
  }
7781
7814
  }
7782
7815
 
7816
+ export class CreateInnerCustomerserviceRequest extends $tea.Model {
7817
+ // OAuth模式下的授权token
7818
+ authToken?: string;
7819
+ productInstanceId?: string;
7820
+ // 租户id
7821
+ tenantId: string;
7822
+ // 公司社会统一信息代码,间联模式必传
7823
+ merchantId?: string;
7824
+ // 公司名称
7825
+ merchantName?: string;
7826
+ // 处理类型:
7827
+ // 商家处理
7828
+ // 服务商代处理
7829
+ processType: string;
7830
+ // 服务商名称
7831
+ serviceProviderName?: string;
7832
+ // 客诉处理员支付宝绑定手机号
7833
+ alipayBindMobile: string;
7834
+ // 客诉处理员支付宝账号
7835
+ alipayLogonId: string;
7836
+ // 客服电话
7837
+ customerServicePhone: string;
7838
+ // 客服人员名称
7839
+ customerServiceName: string;
7840
+ // 在线客服网址
7841
+ onlineSupportSiteUrl: string;
7842
+ // 投诉问题
7843
+ customerComplaintIssues: string;
7844
+ // 进件类型
7845
+ // DIRECT("DIRECT", "直连进件模式"),
7846
+ // AGENT("AGENT", "代理商进件模式"),
7847
+ expandMode: string;
7848
+ static names(): { [key: string]: string } {
7849
+ return {
7850
+ authToken: 'auth_token',
7851
+ productInstanceId: 'product_instance_id',
7852
+ tenantId: 'tenant_id',
7853
+ merchantId: 'merchant_id',
7854
+ merchantName: 'merchant_name',
7855
+ processType: 'process_type',
7856
+ serviceProviderName: 'service_provider_name',
7857
+ alipayBindMobile: 'alipay_bind_mobile',
7858
+ alipayLogonId: 'alipay_logon_id',
7859
+ customerServicePhone: 'customer_service_phone',
7860
+ customerServiceName: 'customer_service_name',
7861
+ onlineSupportSiteUrl: 'online_support_site_url',
7862
+ customerComplaintIssues: 'customer_complaint_issues',
7863
+ expandMode: 'expand_mode',
7864
+ };
7865
+ }
7866
+
7867
+ static types(): { [key: string]: any } {
7868
+ return {
7869
+ authToken: 'string',
7870
+ productInstanceId: 'string',
7871
+ tenantId: 'string',
7872
+ merchantId: 'string',
7873
+ merchantName: 'string',
7874
+ processType: 'string',
7875
+ serviceProviderName: 'string',
7876
+ alipayBindMobile: 'string',
7877
+ alipayLogonId: 'string',
7878
+ customerServicePhone: 'string',
7879
+ customerServiceName: 'string',
7880
+ onlineSupportSiteUrl: 'string',
7881
+ customerComplaintIssues: 'string',
7882
+ expandMode: 'string',
7883
+ };
7884
+ }
7885
+
7886
+ constructor(map?: { [key: string]: any }) {
7887
+ super(map);
7888
+ }
7889
+ }
7890
+
7891
+ export class CreateInnerCustomerserviceResponse extends $tea.Model {
7892
+ // 请求唯一ID,用于链路跟踪和问题排查
7893
+ reqMsgId?: string;
7894
+ // 结果码,一般OK表示调用成功
7895
+ resultCode?: string;
7896
+ // 异常信息的文本描述
7897
+ resultMsg?: string;
7898
+ static names(): { [key: string]: string } {
7899
+ return {
7900
+ reqMsgId: 'req_msg_id',
7901
+ resultCode: 'result_code',
7902
+ resultMsg: 'result_msg',
7903
+ };
7904
+ }
7905
+
7906
+ static types(): { [key: string]: any } {
7907
+ return {
7908
+ reqMsgId: 'string',
7909
+ resultCode: 'string',
7910
+ resultMsg: 'string',
7911
+ };
7912
+ }
7913
+
7914
+ constructor(map?: { [key: string]: any }) {
7915
+ super(map);
7916
+ }
7917
+ }
7918
+
7919
+ export class UpdateInnerCustomerserviceRequest extends $tea.Model {
7920
+ // OAuth模式下的授权token
7921
+ authToken?: string;
7922
+ productInstanceId?: string;
7923
+ // 租户id
7924
+ tenantId: string;
7925
+ // 商家社会统一信用代码,间联模式必传
7926
+ merchantId?: string;
7927
+ // 公司名称
7928
+ merchantName: string;
7929
+ // 处理类型: 商家处理 服务商代处理
7930
+ processType: string;
7931
+ // 服务商名称
7932
+ serviceProviderName?: string;
7933
+ // 客诉处理员支付宝绑定手机号
7934
+ alipayBindMobile: string;
7935
+ // 客诉处理员支付宝账号
7936
+ alipayLogonId: string;
7937
+ // 客服电话
7938
+ customerServicePhone: string;
7939
+ // 客服人员名称
7940
+ customerServiceName: string;
7941
+ // 在线客服网址
7942
+ onlineSupportSiteUrl: string;
7943
+ // 投诉问题
7944
+ customerComplaintIssues: string;
7945
+ // 进件类型
7946
+ // DIRECT("DIRECT", "直连进件模式"), AGENT("AGENT", "代理商进件模式"),
7947
+ expandMode: string;
7948
+ static names(): { [key: string]: string } {
7949
+ return {
7950
+ authToken: 'auth_token',
7951
+ productInstanceId: 'product_instance_id',
7952
+ tenantId: 'tenant_id',
7953
+ merchantId: 'merchant_id',
7954
+ merchantName: 'merchant_name',
7955
+ processType: 'process_type',
7956
+ serviceProviderName: 'service_provider_name',
7957
+ alipayBindMobile: 'alipay_bind_mobile',
7958
+ alipayLogonId: 'alipay_logon_id',
7959
+ customerServicePhone: 'customer_service_phone',
7960
+ customerServiceName: 'customer_service_name',
7961
+ onlineSupportSiteUrl: 'online_support_site_url',
7962
+ customerComplaintIssues: 'customer_complaint_issues',
7963
+ expandMode: 'expand_mode',
7964
+ };
7965
+ }
7966
+
7967
+ static types(): { [key: string]: any } {
7968
+ return {
7969
+ authToken: 'string',
7970
+ productInstanceId: 'string',
7971
+ tenantId: 'string',
7972
+ merchantId: 'string',
7973
+ merchantName: 'string',
7974
+ processType: 'string',
7975
+ serviceProviderName: 'string',
7976
+ alipayBindMobile: 'string',
7977
+ alipayLogonId: 'string',
7978
+ customerServicePhone: 'string',
7979
+ customerServiceName: 'string',
7980
+ onlineSupportSiteUrl: 'string',
7981
+ customerComplaintIssues: 'string',
7982
+ expandMode: 'string',
7983
+ };
7984
+ }
7985
+
7986
+ constructor(map?: { [key: string]: any }) {
7987
+ super(map);
7988
+ }
7989
+ }
7990
+
7991
+ export class UpdateInnerCustomerserviceResponse extends $tea.Model {
7992
+ // 请求唯一ID,用于链路跟踪和问题排查
7993
+ reqMsgId?: string;
7994
+ // 结果码,一般OK表示调用成功
7995
+ resultCode?: string;
7996
+ // 异常信息的文本描述
7997
+ resultMsg?: string;
7998
+ static names(): { [key: string]: string } {
7999
+ return {
8000
+ reqMsgId: 'req_msg_id',
8001
+ resultCode: 'result_code',
8002
+ resultMsg: 'result_msg',
8003
+ };
8004
+ }
8005
+
8006
+ static types(): { [key: string]: any } {
8007
+ return {
8008
+ reqMsgId: 'string',
8009
+ resultCode: 'string',
8010
+ resultMsg: 'string',
8011
+ };
8012
+ }
8013
+
8014
+ constructor(map?: { [key: string]: any }) {
8015
+ super(map);
8016
+ }
8017
+ }
8018
+
8019
+ export class PagequeryInnerCustomerserviceRequest extends $tea.Model {
8020
+ // OAuth模式下的授权token
8021
+ authToken?: string;
8022
+ productInstanceId?: string;
8023
+ // 租户id
8024
+ tenantId: string;
8025
+ // 分页信息
8026
+ pageInfo: PageQuery;
8027
+ // 处理类型: 商家处理 服务商代处理
8028
+ processType?: string;
8029
+ // 公司社会统一信息代码
8030
+ merchantId?: string;
8031
+ // 公司名称
8032
+ merchantName?: string;
8033
+ static names(): { [key: string]: string } {
8034
+ return {
8035
+ authToken: 'auth_token',
8036
+ productInstanceId: 'product_instance_id',
8037
+ tenantId: 'tenant_id',
8038
+ pageInfo: 'page_info',
8039
+ processType: 'process_type',
8040
+ merchantId: 'merchant_id',
8041
+ merchantName: 'merchant_name',
8042
+ };
8043
+ }
8044
+
8045
+ static types(): { [key: string]: any } {
8046
+ return {
8047
+ authToken: 'string',
8048
+ productInstanceId: 'string',
8049
+ tenantId: 'string',
8050
+ pageInfo: PageQuery,
8051
+ processType: 'string',
8052
+ merchantId: 'string',
8053
+ merchantName: 'string',
8054
+ };
8055
+ }
8056
+
8057
+ constructor(map?: { [key: string]: any }) {
8058
+ super(map);
8059
+ }
8060
+ }
8061
+
8062
+ export class PagequeryInnerCustomerserviceResponse extends $tea.Model {
8063
+ // 请求唯一ID,用于链路跟踪和问题排查
8064
+ reqMsgId?: string;
8065
+ // 结果码,一般OK表示调用成功
8066
+ resultCode?: string;
8067
+ // 异常信息的文本描述
8068
+ resultMsg?: string;
8069
+ // 总数
8070
+ total?: number;
8071
+ // 客服信息
8072
+ customerServiceInfoList?: CustomerServiceInfo[];
8073
+ static names(): { [key: string]: string } {
8074
+ return {
8075
+ reqMsgId: 'req_msg_id',
8076
+ resultCode: 'result_code',
8077
+ resultMsg: 'result_msg',
8078
+ total: 'total',
8079
+ customerServiceInfoList: 'customer_service_info_list',
8080
+ };
8081
+ }
8082
+
8083
+ static types(): { [key: string]: any } {
8084
+ return {
8085
+ reqMsgId: 'string',
8086
+ resultCode: 'string',
8087
+ resultMsg: 'string',
8088
+ total: 'number',
8089
+ customerServiceInfoList: { 'type': 'array', 'itemType': CustomerServiceInfo },
8090
+ };
8091
+ }
8092
+
8093
+ constructor(map?: { [key: string]: any }) {
8094
+ super(map);
8095
+ }
8096
+ }
8097
+
8098
+ export class DetailInnerCustomerserviceRequest extends $tea.Model {
8099
+ // OAuth模式下的授权token
8100
+ authToken?: string;
8101
+ productInstanceId?: string;
8102
+ // 租户id
8103
+ tenantId: string;
8104
+ // 公司社会统一信息代码,间联模式必传
8105
+ merchantId?: string;
8106
+ // 进件类型
8107
+ // DIRECT("DIRECT", "直连进件模式"),
8108
+ // AGENT("AGENT", "代理商进件模式"),
8109
+ expandMode: string;
8110
+ static names(): { [key: string]: string } {
8111
+ return {
8112
+ authToken: 'auth_token',
8113
+ productInstanceId: 'product_instance_id',
8114
+ tenantId: 'tenant_id',
8115
+ merchantId: 'merchant_id',
8116
+ expandMode: 'expand_mode',
8117
+ };
8118
+ }
8119
+
8120
+ static types(): { [key: string]: any } {
8121
+ return {
8122
+ authToken: 'string',
8123
+ productInstanceId: 'string',
8124
+ tenantId: 'string',
8125
+ merchantId: 'string',
8126
+ expandMode: 'string',
8127
+ };
8128
+ }
8129
+
8130
+ constructor(map?: { [key: string]: any }) {
8131
+ super(map);
8132
+ }
8133
+ }
8134
+
8135
+ export class DetailInnerCustomerserviceResponse extends $tea.Model {
8136
+ // 请求唯一ID,用于链路跟踪和问题排查
8137
+ reqMsgId?: string;
8138
+ // 结果码,一般OK表示调用成功
8139
+ resultCode?: string;
8140
+ // 异常信息的文本描述
8141
+ resultMsg?: string;
8142
+ // 公司社会统一信息代码
8143
+ merchantId?: string;
8144
+ // 公司名称
8145
+ merchantName?: string;
8146
+ // 处理类型: 商家处理;服务商代处理
8147
+ processType?: string;
8148
+ // 服务商名称
8149
+ serviceProviderName?: string;
8150
+ // 客诉处理员支付宝绑定手机号
8151
+ alipayBindMobile?: string;
8152
+ // 客诉处理员支付宝账号
8153
+ alipayLogonId?: string;
8154
+ // 客服电话
8155
+ customerServicePhone?: string;
8156
+ // 客服人员名称
8157
+ customerServiceName?: string;
8158
+ // 在线客服网址
8159
+ onlineSupportSiteUrl?: string;
8160
+ // 投诉问题
8161
+ customerComplaintIssues?: string;
8162
+ static names(): { [key: string]: string } {
8163
+ return {
8164
+ reqMsgId: 'req_msg_id',
8165
+ resultCode: 'result_code',
8166
+ resultMsg: 'result_msg',
8167
+ merchantId: 'merchant_id',
8168
+ merchantName: 'merchant_name',
8169
+ processType: 'process_type',
8170
+ serviceProviderName: 'service_provider_name',
8171
+ alipayBindMobile: 'alipay_bind_mobile',
8172
+ alipayLogonId: 'alipay_logon_id',
8173
+ customerServicePhone: 'customer_service_phone',
8174
+ customerServiceName: 'customer_service_name',
8175
+ onlineSupportSiteUrl: 'online_support_site_url',
8176
+ customerComplaintIssues: 'customer_complaint_issues',
8177
+ };
8178
+ }
8179
+
8180
+ static types(): { [key: string]: any } {
8181
+ return {
8182
+ reqMsgId: 'string',
8183
+ resultCode: 'string',
8184
+ resultMsg: 'string',
8185
+ merchantId: 'string',
8186
+ merchantName: 'string',
8187
+ processType: 'string',
8188
+ serviceProviderName: 'string',
8189
+ alipayBindMobile: 'string',
8190
+ alipayLogonId: 'string',
8191
+ customerServicePhone: 'string',
8192
+ customerServiceName: 'string',
8193
+ onlineSupportSiteUrl: 'string',
8194
+ customerComplaintIssues: 'string',
8195
+ };
8196
+ }
8197
+
8198
+ constructor(map?: { [key: string]: any }) {
8199
+ super(map);
8200
+ }
8201
+ }
8202
+
8203
+ export class GetInnerCustomerservicetemplateRequest extends $tea.Model {
8204
+ // OAuth模式下的授权token
8205
+ authToken?: string;
8206
+ productInstanceId?: string;
8207
+ // 租户id
8208
+ tenantId: string;
8209
+ // 进件类型
8210
+ // DIRECT("DIRECT", "直连进件模式")
8211
+ // AGENT("AGENT", "代理商进件模式")
8212
+ expandMode: string;
8213
+ // 处理类型: 商家处理;服务商代处理
8214
+ processType: string;
8215
+ static names(): { [key: string]: string } {
8216
+ return {
8217
+ authToken: 'auth_token',
8218
+ productInstanceId: 'product_instance_id',
8219
+ tenantId: 'tenant_id',
8220
+ expandMode: 'expand_mode',
8221
+ processType: 'process_type',
8222
+ };
8223
+ }
8224
+
8225
+ static types(): { [key: string]: any } {
8226
+ return {
8227
+ authToken: 'string',
8228
+ productInstanceId: 'string',
8229
+ tenantId: 'string',
8230
+ expandMode: 'string',
8231
+ processType: 'string',
8232
+ };
8233
+ }
8234
+
8235
+ constructor(map?: { [key: string]: any }) {
8236
+ super(map);
8237
+ }
8238
+ }
8239
+
8240
+ export class GetInnerCustomerservicetemplateResponse extends $tea.Model {
8241
+ // 请求唯一ID,用于链路跟踪和问题排查
8242
+ reqMsgId?: string;
8243
+ // 结果码,一般OK表示调用成功
8244
+ resultCode?: string;
8245
+ // 异常信息的文本描述
8246
+ resultMsg?: string;
8247
+ // 服务商名称
8248
+ serviceProviderName?: string;
8249
+ // 客诉处理员支付宝绑定手机号
8250
+ alipayBindMobile?: string;
8251
+ // 客诉处理员支付宝账号
8252
+ alipayLogonId?: string;
8253
+ // 客服电话
8254
+ customerServicePhone?: string;
8255
+ // 客服人员名称
8256
+ customerServiceName?: string;
8257
+ // 在线客服网址
8258
+ onlineSupportSiteUrl?: string;
8259
+ // 投诉问题
8260
+ customerComplaintIssues?: string;
8261
+ static names(): { [key: string]: string } {
8262
+ return {
8263
+ reqMsgId: 'req_msg_id',
8264
+ resultCode: 'result_code',
8265
+ resultMsg: 'result_msg',
8266
+ serviceProviderName: 'service_provider_name',
8267
+ alipayBindMobile: 'alipay_bind_mobile',
8268
+ alipayLogonId: 'alipay_logon_id',
8269
+ customerServicePhone: 'customer_service_phone',
8270
+ customerServiceName: 'customer_service_name',
8271
+ onlineSupportSiteUrl: 'online_support_site_url',
8272
+ customerComplaintIssues: 'customer_complaint_issues',
8273
+ };
8274
+ }
8275
+
8276
+ static types(): { [key: string]: any } {
8277
+ return {
8278
+ reqMsgId: 'string',
8279
+ resultCode: 'string',
8280
+ resultMsg: 'string',
8281
+ serviceProviderName: 'string',
8282
+ alipayBindMobile: 'string',
8283
+ alipayLogonId: 'string',
8284
+ customerServicePhone: 'string',
8285
+ customerServiceName: 'string',
8286
+ onlineSupportSiteUrl: 'string',
8287
+ customerComplaintIssues: 'string',
8288
+ };
8289
+ }
8290
+
8291
+ constructor(map?: { [key: string]: any }) {
8292
+ super(map);
8293
+ }
8294
+ }
8295
+
7783
8296
  export class CreateInsureRequest extends $tea.Model {
7784
8297
  // OAuth模式下的授权token
7785
8298
  authToken?: string;
@@ -11599,7 +12112,7 @@ export default class Client {
11599
12112
  req_msg_id: AntchainUtil.getNonce(),
11600
12113
  access_key: this._accessKeyId,
11601
12114
  base_sdk_version: "TeaSDK-2.0",
11602
- sdk_version: "1.10.16",
12115
+ sdk_version: "1.10.24",
11603
12116
  _prod_code: "ATO",
11604
12117
  _prod_channel: "undefined",
11605
12118
  };
@@ -13229,6 +13742,101 @@ export default class Client {
13229
13742
  return $tea.cast<BatchqueryInnerMarketingscoreResponse>(await this.doRequest("1.0", "antchain.ato.inner.marketingscore.batchquery", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new BatchqueryInnerMarketingscoreResponse({}));
13230
13743
  }
13231
13744
 
13745
+ /**
13746
+ * Description: 创建客服信息
13747
+ * Summary: 创建客服信息
13748
+ */
13749
+ async createInnerCustomerservice(request: CreateInnerCustomerserviceRequest): Promise<CreateInnerCustomerserviceResponse> {
13750
+ let runtime = new $Util.RuntimeOptions({ });
13751
+ let headers : {[key: string ]: string} = { };
13752
+ return await this.createInnerCustomerserviceEx(request, headers, runtime);
13753
+ }
13754
+
13755
+ /**
13756
+ * Description: 创建客服信息
13757
+ * Summary: 创建客服信息
13758
+ */
13759
+ async createInnerCustomerserviceEx(request: CreateInnerCustomerserviceRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<CreateInnerCustomerserviceResponse> {
13760
+ Util.validateModel(request);
13761
+ return $tea.cast<CreateInnerCustomerserviceResponse>(await this.doRequest("1.0", "antchain.ato.inner.customerservice.create", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new CreateInnerCustomerserviceResponse({}));
13762
+ }
13763
+
13764
+ /**
13765
+ * Description: 更新客服信息
13766
+ * Summary: 更新客服信息
13767
+ */
13768
+ async updateInnerCustomerservice(request: UpdateInnerCustomerserviceRequest): Promise<UpdateInnerCustomerserviceResponse> {
13769
+ let runtime = new $Util.RuntimeOptions({ });
13770
+ let headers : {[key: string ]: string} = { };
13771
+ return await this.updateInnerCustomerserviceEx(request, headers, runtime);
13772
+ }
13773
+
13774
+ /**
13775
+ * Description: 更新客服信息
13776
+ * Summary: 更新客服信息
13777
+ */
13778
+ async updateInnerCustomerserviceEx(request: UpdateInnerCustomerserviceRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<UpdateInnerCustomerserviceResponse> {
13779
+ Util.validateModel(request);
13780
+ return $tea.cast<UpdateInnerCustomerserviceResponse>(await this.doRequest("1.0", "antchain.ato.inner.customerservice.update", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new UpdateInnerCustomerserviceResponse({}));
13781
+ }
13782
+
13783
+ /**
13784
+ * Description: 分页查询客服信息
13785
+ * Summary: 分页查询客服信息
13786
+ */
13787
+ async pagequeryInnerCustomerservice(request: PagequeryInnerCustomerserviceRequest): Promise<PagequeryInnerCustomerserviceResponse> {
13788
+ let runtime = new $Util.RuntimeOptions({ });
13789
+ let headers : {[key: string ]: string} = { };
13790
+ return await this.pagequeryInnerCustomerserviceEx(request, headers, runtime);
13791
+ }
13792
+
13793
+ /**
13794
+ * Description: 分页查询客服信息
13795
+ * Summary: 分页查询客服信息
13796
+ */
13797
+ async pagequeryInnerCustomerserviceEx(request: PagequeryInnerCustomerserviceRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<PagequeryInnerCustomerserviceResponse> {
13798
+ Util.validateModel(request);
13799
+ return $tea.cast<PagequeryInnerCustomerserviceResponse>(await this.doRequest("1.0", "antchain.ato.inner.customerservice.pagequery", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new PagequeryInnerCustomerserviceResponse({}));
13800
+ }
13801
+
13802
+ /**
13803
+ * Description: 获取客服信息详情
13804
+ * Summary: 获取客服信息详情
13805
+ */
13806
+ async detailInnerCustomerservice(request: DetailInnerCustomerserviceRequest): Promise<DetailInnerCustomerserviceResponse> {
13807
+ let runtime = new $Util.RuntimeOptions({ });
13808
+ let headers : {[key: string ]: string} = { };
13809
+ return await this.detailInnerCustomerserviceEx(request, headers, runtime);
13810
+ }
13811
+
13812
+ /**
13813
+ * Description: 获取客服信息详情
13814
+ * Summary: 获取客服信息详情
13815
+ */
13816
+ async detailInnerCustomerserviceEx(request: DetailInnerCustomerserviceRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<DetailInnerCustomerserviceResponse> {
13817
+ Util.validateModel(request);
13818
+ return $tea.cast<DetailInnerCustomerserviceResponse>(await this.doRequest("1.0", "antchain.ato.inner.customerservice.detail", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new DetailInnerCustomerserviceResponse({}));
13819
+ }
13820
+
13821
+ /**
13822
+ * Description: 获取代理商客服信息模版
13823
+ * Summary: 获取代理商客服信息模版
13824
+ */
13825
+ async getInnerCustomerservicetemplate(request: GetInnerCustomerservicetemplateRequest): Promise<GetInnerCustomerservicetemplateResponse> {
13826
+ let runtime = new $Util.RuntimeOptions({ });
13827
+ let headers : {[key: string ]: string} = { };
13828
+ return await this.getInnerCustomerservicetemplateEx(request, headers, runtime);
13829
+ }
13830
+
13831
+ /**
13832
+ * Description: 获取代理商客服信息模版
13833
+ * Summary: 获取代理商客服信息模版
13834
+ */
13835
+ async getInnerCustomerservicetemplateEx(request: GetInnerCustomerservicetemplateRequest, headers: {[key: string ]: string}, runtime: $Util.RuntimeOptions): Promise<GetInnerCustomerservicetemplateResponse> {
13836
+ Util.validateModel(request);
13837
+ return $tea.cast<GetInnerCustomerservicetemplateResponse>(await this.doRequest("1.0", "antchain.ato.inner.customerservicetemplate.get", "HTTPS", "POST", `/gateway.do`, $tea.toMap(request), headers, runtime), new GetInnerCustomerservicetemplateResponse({}));
13838
+ }
13839
+
13232
13840
  /**
13233
13841
  * Description: 一键投保
13234
13842
  * Summary: 投保