| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 | <?php/* * Copyright (c) 2017-2018 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. */namespace TencentCloud\Faceid\V20180301\Models;use TencentCloud\Common\AbstractModel;/** * GetDetectInfo请求参数结构体 * * @method string getBizToken() 获取人脸核身流程的标识,调用DetectAuth接口时生成。 * @method void setBizToken(string $BizToken) 设置人脸核身流程的标识,调用DetectAuth接口时生成。 * @method string getRuleId() 获取用于细分客户使用场景,申请开通服务后,可以在腾讯云慧眼人脸核身控制台(https://console.cloud.tencent.com/faceid) 自助接入里面创建,审核通过后即可调用。如有疑问,请加慧眼小助手微信(faceid001)进行咨询。 * @method void setRuleId(string $RuleId) 设置用于细分客户使用场景,申请开通服务后,可以在腾讯云慧眼人脸核身控制台(https://console.cloud.tencent.com/faceid) 自助接入里面创建,审核通过后即可调用。如有疑问,请加慧眼小助手微信(faceid001)进行咨询。 * @method string getInfoType() 获取指定拉取的结果信息,取值(0:全部;1:文本类;2:身份证正反面;3:视频最佳截图照片;4:视频)。如 134表示拉取文本类、视频最佳截图照片、视频。默认值:0 * @method void setInfoType(string $InfoType) 设置指定拉取的结果信息,取值(0:全部;1:文本类;2:身份证正反面;3:视频最佳截图照片;4:视频)。如 134表示拉取文本类、视频最佳截图照片、视频。默认值:0 */class GetDetectInfoRequest extends AbstractModel{    /**     * @var string 人脸核身流程的标识,调用DetectAuth接口时生成。     */    public $BizToken;    /**     * @var string 用于细分客户使用场景,申请开通服务后,可以在腾讯云慧眼人脸核身控制台(https://console.cloud.tencent.com/faceid) 自助接入里面创建,审核通过后即可调用。如有疑问,请加慧眼小助手微信(faceid001)进行咨询。     */    public $RuleId;    /**     * @var string 指定拉取的结果信息,取值(0:全部;1:文本类;2:身份证正反面;3:视频最佳截图照片;4:视频)。如 134表示拉取文本类、视频最佳截图照片、视频。默认值:0     */    public $InfoType;    /**     * @param string $BizToken 人脸核身流程的标识,调用DetectAuth接口时生成。     * @param string $RuleId 用于细分客户使用场景,申请开通服务后,可以在腾讯云慧眼人脸核身控制台(https://console.cloud.tencent.com/faceid) 自助接入里面创建,审核通过后即可调用。如有疑问,请加慧眼小助手微信(faceid001)进行咨询。     * @param string $InfoType 指定拉取的结果信息,取值(0:全部;1:文本类;2:身份证正反面;3:视频最佳截图照片;4:视频)。如 134表示拉取文本类、视频最佳截图照片、视频。默认值:0     */    function __construct()    {    }    /**     * For internal only. DO NOT USE IT.     */    public function deserialize($param)    {        if ($param === null) {            return;        }        if (array_key_exists("BizToken",$param) and $param["BizToken"] !== null) {            $this->BizToken = $param["BizToken"];        }        if (array_key_exists("RuleId",$param) and $param["RuleId"] !== null) {            $this->RuleId = $param["RuleId"];        }        if (array_key_exists("InfoType",$param) and $param["InfoType"] !== null) {            $this->InfoType = $param["InfoType"];        }    }}
 |