tencentcloud-sdk-nodejs-intl-en
Version:
220 lines (189 loc) • 8.78 kB
JavaScript
/*
* Copyright (c) 2018 Tencent. 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.
*/
const AbstractModel = require("../../common/abstract_model");
/**
* DescribeCaptchaResult response structure.
* @class
*/
class DescribeCaptchaResultResponse extends AbstractModel {
constructor(){
super();
/**
* OK indicates verification passed.
7 captcha no match. the passed in Randstr is invalid. please check if the Randstr is consistent with the Randstr returned by the frontend.
The passed-in ticket has expired (the valid period of the ticket is 5 minutes). generate the ticket and Randstr again for validation.
The passed-in ticket is reused. generate the ticket and Randstr again for verification.
15 decrypt fail. the passed-in Ticket is invalid. please check if the Ticket is consistent with the Ticket returned by the frontend.
16 appid-ticket mismatch. the passed in CaptchaAppId is incorrect. please check if the CaptchaAppId is consistent with the CaptchaAppId passed in by the frontend, and ensure that the CaptchaAppId is obtained from the verification code console [verification management] -> [basic configuration].
21 diff invoice verification exception. possible reasons: (1) if the Ticket contains the trerror prefix, generally because the user has a poor network connection, resulting in the frontend's automatic disaster recovery and generation of a disaster recovery Ticket. the business side may skip or post-process as needed. (2) if the Ticket does not include the trerror prefix, it is because the security risk of the request was detected by the CAPTCHA-intl risk control system. the business side may intercept as needed.
100 appid-secretkey-ticket mismatch. parameter validation error. (1) please check whether the CaptchaAppId and AppSecretKey are correct. the CaptchaAppId and AppSecretKey need to be obtained from verification code console > verification management > basic configuration. (2) please check whether the passed-in ticket is generated by the passed-in CaptchaAppId.
* @type {number || null}
*/
this.CaptchaCode = null;
/**
* Status description and verification error message.
* @type {string || null}
*/
this.CaptchaMsg = null;
/**
* In invisible verification mode, this parameter returns the verification result.
EvilLevel=0 indicates that the request is not malicious.
The parameter EvilLevel = 100 indicates that the request is malicious.
* @type {number || null}
*/
this.EvilLevel = null;
/**
* Frontend retrieval time of the captcha-intl, timestamp format.
* @type {number || null}
*/
this.GetCaptchaTime = null;
/**
* Blocking type
Note: This field may return null, indicating that no valid values can be obtained.
* @type {number || null}
*/
this.EvilBitmap = null;
/**
* The time when the CAPTCHA is submitted.
* @type {number || null}
*/
this.SubmitCaptchaTime = null;
/**
* Device risk category.
Note: This field may return null, indicating that no valid values can be obtained.
* @type {string || null}
*/
this.DeviceRiskCategory = null;
/**
* CAPTCHA-Intl score.
Note:The score ranges from 0 to 100 (e.g., 20, 70, 90).
A higher score indicates a greater probability that the interaction was initiated by a bot or represents a bot attack.
A lower score indicates a greater probability that the interaction was performed by a real human user.
* @type {number || null}
*/
this.Score = null;
/**
* The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
* @type {string || null}
*/
this.RequestId = null;
}
/**
* @private
*/
deserialize(params) {
if (!params) {
return;
}
this.CaptchaCode = 'CaptchaCode' in params ? params.CaptchaCode : null;
this.CaptchaMsg = 'CaptchaMsg' in params ? params.CaptchaMsg : null;
this.EvilLevel = 'EvilLevel' in params ? params.EvilLevel : null;
this.GetCaptchaTime = 'GetCaptchaTime' in params ? params.GetCaptchaTime : null;
this.EvilBitmap = 'EvilBitmap' in params ? params.EvilBitmap : null;
this.SubmitCaptchaTime = 'SubmitCaptchaTime' in params ? params.SubmitCaptchaTime : null;
this.DeviceRiskCategory = 'DeviceRiskCategory' in params ? params.DeviceRiskCategory : null;
this.Score = 'Score' in params ? params.Score : null;
this.RequestId = 'RequestId' in params ? params.RequestId : null;
}
}
/**
* DescribeCaptchaResult request structure.
* @class
*/
class DescribeCaptchaResultRequest extends AbstractModel {
constructor(){
super();
/**
* Fill with fixed value: 9.
* @type {number || null}
*/
this.CaptchaType = null;
/**
* The user verification ticket returned by the frontend callback function.
* @type {string || null}
*/
this.Ticket = null;
/**
* The user public IP obtained from the customer backend server.
* @type {string || null}
*/
this.UserIp = null;
/**
* A random string returned by the frontend callback function
* @type {string || null}
*/
this.Randstr = null;
/**
* CAPTCHA's app ID. Log in to the [Captcha console](https://console.cloud.tencent.com/captcha/graphical) and you can view the CaptchaAppId in the "Key" column of the CAPTCHA list.
* @type {number || null}
*/
this.CaptchaAppId = null;
/**
* CAPTCHA's app key. Log in to the [Captcha console](https://console.cloud.tencent.com/captcha/graphical) and you can view the AppSecretKey in the "Key" column of the CAPTCHA list. AppSecretKey is the key for CAPTCHA ticket verification performed by the server. Please keep it confidential and do not disclose it to any third parties.
* @type {string || null}
*/
this.AppSecretKey = null;
/**
* Reserved field.
* @type {number || null}
*/
this.BusinessId = null;
/**
* Reserved field.
* @type {number || null}
*/
this.SceneId = null;
/**
* MAC address or unique identifier of a device
* @type {string || null}
*/
this.MacAddress = null;
/**
* Mobile equipment identity number
* @type {string || null}
*/
this.Imei = null;
/**
* Indicates whether to return the time when the frontend obtains the CAPTCHA. Valid values: 1 (return the time) and others.
* @type {number || null}
*/
this.NeedGetCaptchaTime = null;
}
/**
* @private
*/
deserialize(params) {
if (!params) {
return;
}
this.CaptchaType = 'CaptchaType' in params ? params.CaptchaType : null;
this.Ticket = 'Ticket' in params ? params.Ticket : null;
this.UserIp = 'UserIp' in params ? params.UserIp : null;
this.Randstr = 'Randstr' in params ? params.Randstr : null;
this.CaptchaAppId = 'CaptchaAppId' in params ? params.CaptchaAppId : null;
this.AppSecretKey = 'AppSecretKey' in params ? params.AppSecretKey : null;
this.BusinessId = 'BusinessId' in params ? params.BusinessId : null;
this.SceneId = 'SceneId' in params ? params.SceneId : null;
this.MacAddress = 'MacAddress' in params ? params.MacAddress : null;
this.Imei = 'Imei' in params ? params.Imei : null;
this.NeedGetCaptchaTime = 'NeedGetCaptchaTime' in params ? params.NeedGetCaptchaTime : null;
}
}
module.exports = {
DescribeCaptchaResultResponse: DescribeCaptchaResultResponse,
DescribeCaptchaResultRequest: DescribeCaptchaResultRequest,
}