GetDetectInfoEnhancedRequest.php 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. <?php
  2. /*
  3. * Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
  4. *
  5. * Licensed under the Apache License, Version 2.0 (the "License");
  6. * you may not use this file except in compliance with the License.
  7. * You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. */
  17. namespace TencentCloud\Faceid\V20180301\Models;
  18. use TencentCloud\Common\AbstractModel;
  19. /**
  20. * GetDetectInfoEnhanced请求参数结构体
  21. *
  22. * @method string getBizToken() 获取人脸核身流程的标识,调用DetectAuth接口时生成。
  23. * @method void setBizToken(string $BizToken) 设置人脸核身流程的标识,调用DetectAuth接口时生成。
  24. * @method string getRuleId() 获取用于细分客户使用场景,由腾讯侧在线下对接时分配。
  25. * @method void setRuleId(string $RuleId) 设置用于细分客户使用场景,由腾讯侧在线下对接时分配。
  26. * @method string getInfoType() 获取指定拉取的结果信息,取值(0:全部;1:文本类;2:身份证信息;3:视频最佳截图信息)。
  27. 如 13表示拉取文本类、视频最佳截图信息。
  28. 默认值:0
  29. * @method void setInfoType(string $InfoType) 设置指定拉取的结果信息,取值(0:全部;1:文本类;2:身份证信息;3:视频最佳截图信息)。
  30. 如 13表示拉取文本类、视频最佳截图信息。
  31. 默认值:0
  32. * @method integer getBestFramesCount() 获取从活体视频中截取一定张数的最佳帧(仅部分服务支持,若需使用请与慧眼小助手沟通)。默认为0,最大为10,超出10的最多只给10张。(InfoType需要包含3)
  33. * @method void setBestFramesCount(integer $BestFramesCount) 设置从活体视频中截取一定张数的最佳帧(仅部分服务支持,若需使用请与慧眼小助手沟通)。默认为0,最大为10,超出10的最多只给10张。(InfoType需要包含3)
  34. * @method boolean getIsCutIdCardImage() 获取是否对身份证照片进行裁边。默认为false。(InfoType需要包含2)
  35. * @method void setIsCutIdCardImage(boolean $IsCutIdCardImage) 设置是否对身份证照片进行裁边。默认为false。(InfoType需要包含2)
  36. * @method boolean getIsNeedIdCardAvatar() 获取是否需要从身份证中抠出头像。默认为false。(InfoType需要包含2)
  37. * @method void setIsNeedIdCardAvatar(boolean $IsNeedIdCardAvatar) 设置是否需要从身份证中抠出头像。默认为false。(InfoType需要包含2)
  38. * @method boolean getIsEncrypt() 获取已弃用。
  39. * @method void setIsEncrypt(boolean $IsEncrypt) 设置已弃用。
  40. * @method Encryption getEncryption() 获取是否需要对返回中的敏感信息进行加密。仅指定加密算法Algorithm即可,其余字段传入默认值。其中敏感信息包括:Response.Text.IdCard、Response.Text.Name、Response.Text.OcrIdCard、Response.Text.OcrName
  41. * @method void setEncryption(Encryption $Encryption) 设置是否需要对返回中的敏感信息进行加密。仅指定加密算法Algorithm即可,其余字段传入默认值。其中敏感信息包括:Response.Text.IdCard、Response.Text.Name、Response.Text.OcrIdCard、Response.Text.OcrName
  42. */
  43. class GetDetectInfoEnhancedRequest extends AbstractModel
  44. {
  45. /**
  46. * @var string 人脸核身流程的标识,调用DetectAuth接口时生成。
  47. */
  48. public $BizToken;
  49. /**
  50. * @var string 用于细分客户使用场景,由腾讯侧在线下对接时分配。
  51. */
  52. public $RuleId;
  53. /**
  54. * @var string 指定拉取的结果信息,取值(0:全部;1:文本类;2:身份证信息;3:视频最佳截图信息)。
  55. 如 13表示拉取文本类、视频最佳截图信息。
  56. 默认值:0
  57. */
  58. public $InfoType;
  59. /**
  60. * @var integer 从活体视频中截取一定张数的最佳帧(仅部分服务支持,若需使用请与慧眼小助手沟通)。默认为0,最大为10,超出10的最多只给10张。(InfoType需要包含3)
  61. */
  62. public $BestFramesCount;
  63. /**
  64. * @var boolean 是否对身份证照片进行裁边。默认为false。(InfoType需要包含2)
  65. */
  66. public $IsCutIdCardImage;
  67. /**
  68. * @var boolean 是否需要从身份证中抠出头像。默认为false。(InfoType需要包含2)
  69. */
  70. public $IsNeedIdCardAvatar;
  71. /**
  72. * @var boolean 已弃用。
  73. */
  74. public $IsEncrypt;
  75. /**
  76. * @var Encryption 是否需要对返回中的敏感信息进行加密。仅指定加密算法Algorithm即可,其余字段传入默认值。其中敏感信息包括:Response.Text.IdCard、Response.Text.Name、Response.Text.OcrIdCard、Response.Text.OcrName
  77. */
  78. public $Encryption;
  79. /**
  80. * @param string $BizToken 人脸核身流程的标识,调用DetectAuth接口时生成。
  81. * @param string $RuleId 用于细分客户使用场景,由腾讯侧在线下对接时分配。
  82. * @param string $InfoType 指定拉取的结果信息,取值(0:全部;1:文本类;2:身份证信息;3:视频最佳截图信息)。
  83. 如 13表示拉取文本类、视频最佳截图信息。
  84. 默认值:0
  85. * @param integer $BestFramesCount 从活体视频中截取一定张数的最佳帧(仅部分服务支持,若需使用请与慧眼小助手沟通)。默认为0,最大为10,超出10的最多只给10张。(InfoType需要包含3)
  86. * @param boolean $IsCutIdCardImage 是否对身份证照片进行裁边。默认为false。(InfoType需要包含2)
  87. * @param boolean $IsNeedIdCardAvatar 是否需要从身份证中抠出头像。默认为false。(InfoType需要包含2)
  88. * @param boolean $IsEncrypt 已弃用。
  89. * @param Encryption $Encryption 是否需要对返回中的敏感信息进行加密。仅指定加密算法Algorithm即可,其余字段传入默认值。其中敏感信息包括:Response.Text.IdCard、Response.Text.Name、Response.Text.OcrIdCard、Response.Text.OcrName
  90. */
  91. function __construct()
  92. {
  93. }
  94. /**
  95. * For internal only. DO NOT USE IT.
  96. */
  97. public function deserialize($param)
  98. {
  99. if ($param === null) {
  100. return;
  101. }
  102. if (array_key_exists("BizToken",$param) and $param["BizToken"] !== null) {
  103. $this->BizToken = $param["BizToken"];
  104. }
  105. if (array_key_exists("RuleId",$param) and $param["RuleId"] !== null) {
  106. $this->RuleId = $param["RuleId"];
  107. }
  108. if (array_key_exists("InfoType",$param) and $param["InfoType"] !== null) {
  109. $this->InfoType = $param["InfoType"];
  110. }
  111. if (array_key_exists("BestFramesCount",$param) and $param["BestFramesCount"] !== null) {
  112. $this->BestFramesCount = $param["BestFramesCount"];
  113. }
  114. if (array_key_exists("IsCutIdCardImage",$param) and $param["IsCutIdCardImage"] !== null) {
  115. $this->IsCutIdCardImage = $param["IsCutIdCardImage"];
  116. }
  117. if (array_key_exists("IsNeedIdCardAvatar",$param) and $param["IsNeedIdCardAvatar"] !== null) {
  118. $this->IsNeedIdCardAvatar = $param["IsNeedIdCardAvatar"];
  119. }
  120. if (array_key_exists("IsEncrypt",$param) and $param["IsEncrypt"] !== null) {
  121. $this->IsEncrypt = $param["IsEncrypt"];
  122. }
  123. if (array_key_exists("Encryption",$param) and $param["Encryption"] !== null) {
  124. $this->Encryption = new Encryption();
  125. $this->Encryption->deserialize($param["Encryption"]);
  126. }
  127. }
  128. }