LivenessRecognitionResponse.php 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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. * LivenessRecognition返回参数结构体
  21. *
  22. * @method string getBestFrameBase64() 获取验证通过后的视频最佳截图照片,照片为BASE64编码后的值,jpg格式。
  23. 注意:此字段可能返回 null,表示取不到有效值。
  24. * @method void setBestFrameBase64(string $BestFrameBase64) 设置验证通过后的视频最佳截图照片,照片为BASE64编码后的值,jpg格式。
  25. 注意:此字段可能返回 null,表示取不到有效值。
  26. * @method float getSim() 获取相似度,取值范围 [0.00, 100.00]。推荐相似度大于等于70时可判断为同一人,可根据具体场景自行调整阈值(阈值70的误通过率为千分之一,阈值80的误通过率是万分之一)
  27. * @method void setSim(float $Sim) 设置相似度,取值范围 [0.00, 100.00]。推荐相似度大于等于70时可判断为同一人,可根据具体场景自行调整阈值(阈值70的误通过率为千分之一,阈值80的误通过率是万分之一)
  28. * @method string getResult() 获取业务错误码,成功情况返回Success, 错误情况请参考下方错误码 列表中FailedOperation部分
  29. * @method void setResult(string $Result) 设置业务错误码,成功情况返回Success, 错误情况请参考下方错误码 列表中FailedOperation部分
  30. * @method string getDescription() 获取业务结果描述。
  31. * @method void setDescription(string $Description) 设置业务结果描述。
  32. * @method array getBestFrameList() 获取最佳截图列表,仅在配置了返回多张最佳截图时返回。
  33. 注意:此字段可能返回 null,表示取不到有效值。
  34. * @method void setBestFrameList(array $BestFrameList) 设置最佳截图列表,仅在配置了返回多张最佳截图时返回。
  35. 注意:此字段可能返回 null,表示取不到有效值。
  36. * @method string getRequestId() 获取唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
  37. * @method void setRequestId(string $RequestId) 设置唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
  38. */
  39. class LivenessRecognitionResponse extends AbstractModel
  40. {
  41. /**
  42. * @var string 验证通过后的视频最佳截图照片,照片为BASE64编码后的值,jpg格式。
  43. 注意:此字段可能返回 null,表示取不到有效值。
  44. */
  45. public $BestFrameBase64;
  46. /**
  47. * @var float 相似度,取值范围 [0.00, 100.00]。推荐相似度大于等于70时可判断为同一人,可根据具体场景自行调整阈值(阈值70的误通过率为千分之一,阈值80的误通过率是万分之一)
  48. */
  49. public $Sim;
  50. /**
  51. * @var string 业务错误码,成功情况返回Success, 错误情况请参考下方错误码 列表中FailedOperation部分
  52. */
  53. public $Result;
  54. /**
  55. * @var string 业务结果描述。
  56. */
  57. public $Description;
  58. /**
  59. * @var array 最佳截图列表,仅在配置了返回多张最佳截图时返回。
  60. 注意:此字段可能返回 null,表示取不到有效值。
  61. */
  62. public $BestFrameList;
  63. /**
  64. * @var string 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
  65. */
  66. public $RequestId;
  67. /**
  68. * @param string $BestFrameBase64 验证通过后的视频最佳截图照片,照片为BASE64编码后的值,jpg格式。
  69. 注意:此字段可能返回 null,表示取不到有效值。
  70. * @param float $Sim 相似度,取值范围 [0.00, 100.00]。推荐相似度大于等于70时可判断为同一人,可根据具体场景自行调整阈值(阈值70的误通过率为千分之一,阈值80的误通过率是万分之一)
  71. * @param string $Result 业务错误码,成功情况返回Success, 错误情况请参考下方错误码 列表中FailedOperation部分
  72. * @param string $Description 业务结果描述。
  73. * @param array $BestFrameList 最佳截图列表,仅在配置了返回多张最佳截图时返回。
  74. 注意:此字段可能返回 null,表示取不到有效值。
  75. * @param string $RequestId 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
  76. */
  77. function __construct()
  78. {
  79. }
  80. /**
  81. * For internal only. DO NOT USE IT.
  82. */
  83. public function deserialize($param)
  84. {
  85. if ($param === null) {
  86. return;
  87. }
  88. if (array_key_exists("BestFrameBase64",$param) and $param["BestFrameBase64"] !== null) {
  89. $this->BestFrameBase64 = $param["BestFrameBase64"];
  90. }
  91. if (array_key_exists("Sim",$param) and $param["Sim"] !== null) {
  92. $this->Sim = $param["Sim"];
  93. }
  94. if (array_key_exists("Result",$param) and $param["Result"] !== null) {
  95. $this->Result = $param["Result"];
  96. }
  97. if (array_key_exists("Description",$param) and $param["Description"] !== null) {
  98. $this->Description = $param["Description"];
  99. }
  100. if (array_key_exists("BestFrameList",$param) and $param["BestFrameList"] !== null) {
  101. $this->BestFrameList = $param["BestFrameList"];
  102. }
  103. if (array_key_exists("RequestId",$param) and $param["RequestId"] !== null) {
  104. $this->RequestId = $param["RequestId"];
  105. }
  106. }
  107. }