1 Star 13 Fork 2

tencentcloud / tencentcloud-sdk-python

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
af_client.py 4.03 KB
一键复制 编辑 原始数据 按行查看 历史
tencentcloud 提交于 2023-07-19 08:15 . release 3.0.938
# -*- coding: utf8 -*-
# Copyright (c) 2017-2021 THL A29 Limited, a Tencent company. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import json
from tencentcloud.common.exception.tencent_cloud_sdk_exception import TencentCloudSDKException
from tencentcloud.common.abstract_client import AbstractClient
from tencentcloud.af.v20200226 import models
class AfClient(AbstractClient):
_apiVersion = '2020-02-26'
_endpoint = 'af.tencentcloudapi.com'
_service = 'af'
def DescribeAntiFraud(self, request):
"""天御反欺诈服务,主要应用于银行、证券、保险、消费金融等金融行业客户,通过腾讯的大数据风控能力,
可以准确识别恶意用户信息,解决客户在支付、活动、理财,风控等业务环节遇到的欺诈威胁,降低企业
的损失。
:param request: Request instance for DescribeAntiFraud.
:type request: :class:`tencentcloud.af.v20200226.models.DescribeAntiFraudRequest`
:rtype: :class:`tencentcloud.af.v20200226.models.DescribeAntiFraudResponse`
"""
try:
params = request._serialize()
headers = request.headers
body = self.call("DescribeAntiFraud", params, headers=headers)
response = json.loads(body)
model = models.DescribeAntiFraudResponse()
model._deserialize(response["Response"])
return model
except Exception as e:
if isinstance(e, TencentCloudSDKException):
raise
else:
raise TencentCloudSDKException(type(e).__name__, str(e))
def GetAntiFraud(self, request):
"""反欺诈评分接口
:param request: Request instance for GetAntiFraud.
:type request: :class:`tencentcloud.af.v20200226.models.GetAntiFraudRequest`
:rtype: :class:`tencentcloud.af.v20200226.models.GetAntiFraudResponse`
"""
try:
params = request._serialize()
headers = request.headers
body = self.call("GetAntiFraud", params, headers=headers)
response = json.loads(body)
model = models.GetAntiFraudResponse()
model._deserialize(response["Response"])
return model
except Exception as e:
if isinstance(e, TencentCloudSDKException):
raise
else:
raise TencentCloudSDKException(type(e).__name__, str(e))
def QueryAntiFraud(self, request):
"""天御反欺诈服务,主要应用于银行、证券、保险、消费金融等金融行业客户,通过腾讯的大数据风控能力,
可以准确识别恶意用户信息,解决客户在支付、活动、理财,风控等业务环节遇到的欺诈威胁,降低企业
的损失。
:param request: Request instance for QueryAntiFraud.
:type request: :class:`tencentcloud.af.v20200226.models.QueryAntiFraudRequest`
:rtype: :class:`tencentcloud.af.v20200226.models.QueryAntiFraudResponse`
"""
try:
params = request._serialize()
headers = request.headers
body = self.call("QueryAntiFraud", params, headers=headers)
response = json.loads(body)
model = models.QueryAntiFraudResponse()
model._deserialize(response["Response"])
return model
except Exception as e:
if isinstance(e, TencentCloudSDKException):
raise
else:
raise TencentCloudSDKException(type(e).__name__, str(e))
1
https://gitee.com/tencentcloud/tencentcloud-sdk-python.git
git@gitee.com:tencentcloud/tencentcloud-sdk-python.git
tencentcloud
tencentcloud-sdk-python
tencentcloud-sdk-python
master

搜索帮助