VerificationDetail.php 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  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. * 核验流程详细信息
  21. *
  22. * @method integer getErrorCode() 获取本次核验最终结果。0为核验通过,是同一人。
  23. 注意:此字段可能返回 null,表示取不到有效值。
  24. * @method void setErrorCode(integer $ErrorCode) 设置本次核验最终结果。0为核验通过,是同一人。
  25. 注意:此字段可能返回 null,表示取不到有效值。
  26. * @method string getErrorMsg() 获取本次核验最终结果描述。
  27. 注意:此字段可能返回 null,表示取不到有效值。
  28. * @method void setErrorMsg(string $ErrorMsg) 设置本次核验最终结果描述。
  29. 注意:此字段可能返回 null,表示取不到有效值。
  30. * @method integer getLivenessErrorCode() 获取本次核验活体结果。0为成功
  31. 注意:此字段可能返回 null,表示取不到有效值。
  32. * @method void setLivenessErrorCode(integer $LivenessErrorCode) 设置本次核验活体结果。0为成功
  33. 注意:此字段可能返回 null,表示取不到有效值。
  34. * @method string getLivenessErrorMsg() 获取本次核验活体结果描述
  35. 注意:此字段可能返回 null,表示取不到有效值。
  36. * @method void setLivenessErrorMsg(string $LivenessErrorMsg) 设置本次核验活体结果描述
  37. 注意:此字段可能返回 null,表示取不到有效值。
  38. * @method integer getCompareErrorCode() 获取本次核验比对结果。0为视频流中采集的最佳人脸照片和上传的比对照片是同一人。
  39. 注意:此字段可能返回 null,表示取不到有效值。
  40. * @method void setCompareErrorCode(integer $CompareErrorCode) 设置本次核验比对结果。0为视频流中采集的最佳人脸照片和上传的比对照片是同一人。
  41. 注意:此字段可能返回 null,表示取不到有效值。
  42. * @method string getCompareErrorMsg() 获取本次核验比对结果描述。
  43. 注意:此字段可能返回 null,表示取不到有效值。
  44. * @method void setCompareErrorMsg(string $CompareErrorMsg) 设置本次核验比对结果描述。
  45. 注意:此字段可能返回 null,表示取不到有效值。
  46. * @method integer getReqTimestamp() 获取本次核验时间戳(毫秒)
  47. 注意:此字段可能返回 null,表示取不到有效值。
  48. * @method void setReqTimestamp(integer $ReqTimestamp) 设置本次核验时间戳(毫秒)
  49. 注意:此字段可能返回 null,表示取不到有效值。
  50. * @method float getSimilarity() 获取本次核验视频流中采集的最佳人脸照片和上传的比对照片的相似度, 范围[0.00, 100.00],默认大于等于70时判断为同一人。
  51. 注意:此字段可能返回 null,表示取不到有效值。
  52. * @method void setSimilarity(float $Similarity) 设置本次核验视频流中采集的最佳人脸照片和上传的比对照片的相似度, 范围[0.00, 100.00],默认大于等于70时判断为同一人。
  53. 注意:此字段可能返回 null,表示取不到有效值。
  54. * @method string getSeq() 获取本次核验的唯一标识
  55. 注意:此字段可能返回 null,表示取不到有效值。
  56. * @method void setSeq(string $Seq) 设置本次核验的唯一标识
  57. 注意:此字段可能返回 null,表示取不到有效值。
  58. */
  59. class VerificationDetail extends AbstractModel
  60. {
  61. /**
  62. * @var integer 本次核验最终结果。0为核验通过,是同一人。
  63. 注意:此字段可能返回 null,表示取不到有效值。
  64. */
  65. public $ErrorCode;
  66. /**
  67. * @var string 本次核验最终结果描述。
  68. 注意:此字段可能返回 null,表示取不到有效值。
  69. */
  70. public $ErrorMsg;
  71. /**
  72. * @var integer 本次核验活体结果。0为成功
  73. 注意:此字段可能返回 null,表示取不到有效值。
  74. */
  75. public $LivenessErrorCode;
  76. /**
  77. * @var string 本次核验活体结果描述
  78. 注意:此字段可能返回 null,表示取不到有效值。
  79. */
  80. public $LivenessErrorMsg;
  81. /**
  82. * @var integer 本次核验比对结果。0为视频流中采集的最佳人脸照片和上传的比对照片是同一人。
  83. 注意:此字段可能返回 null,表示取不到有效值。
  84. */
  85. public $CompareErrorCode;
  86. /**
  87. * @var string 本次核验比对结果描述。
  88. 注意:此字段可能返回 null,表示取不到有效值。
  89. */
  90. public $CompareErrorMsg;
  91. /**
  92. * @var integer 本次核验时间戳(毫秒)
  93. 注意:此字段可能返回 null,表示取不到有效值。
  94. */
  95. public $ReqTimestamp;
  96. /**
  97. * @var float 本次核验视频流中采集的最佳人脸照片和上传的比对照片的相似度, 范围[0.00, 100.00],默认大于等于70时判断为同一人。
  98. 注意:此字段可能返回 null,表示取不到有效值。
  99. */
  100. public $Similarity;
  101. /**
  102. * @var string 本次核验的唯一标识
  103. 注意:此字段可能返回 null,表示取不到有效值。
  104. */
  105. public $Seq;
  106. /**
  107. * @param integer $ErrorCode 本次核验最终结果。0为核验通过,是同一人。
  108. 注意:此字段可能返回 null,表示取不到有效值。
  109. * @param string $ErrorMsg 本次核验最终结果描述。
  110. 注意:此字段可能返回 null,表示取不到有效值。
  111. * @param integer $LivenessErrorCode 本次核验活体结果。0为成功
  112. 注意:此字段可能返回 null,表示取不到有效值。
  113. * @param string $LivenessErrorMsg 本次核验活体结果描述
  114. 注意:此字段可能返回 null,表示取不到有效值。
  115. * @param integer $CompareErrorCode 本次核验比对结果。0为视频流中采集的最佳人脸照片和上传的比对照片是同一人。
  116. 注意:此字段可能返回 null,表示取不到有效值。
  117. * @param string $CompareErrorMsg 本次核验比对结果描述。
  118. 注意:此字段可能返回 null,表示取不到有效值。
  119. * @param integer $ReqTimestamp 本次核验时间戳(毫秒)
  120. 注意:此字段可能返回 null,表示取不到有效值。
  121. * @param float $Similarity 本次核验视频流中采集的最佳人脸照片和上传的比对照片的相似度, 范围[0.00, 100.00],默认大于等于70时判断为同一人。
  122. 注意:此字段可能返回 null,表示取不到有效值。
  123. * @param string $Seq 本次核验的唯一标识
  124. 注意:此字段可能返回 null,表示取不到有效值。
  125. */
  126. function __construct()
  127. {
  128. }
  129. /**
  130. * For internal only. DO NOT USE IT.
  131. */
  132. public function deserialize($param)
  133. {
  134. if ($param === null) {
  135. return;
  136. }
  137. if (array_key_exists("ErrorCode",$param) and $param["ErrorCode"] !== null) {
  138. $this->ErrorCode = $param["ErrorCode"];
  139. }
  140. if (array_key_exists("ErrorMsg",$param) and $param["ErrorMsg"] !== null) {
  141. $this->ErrorMsg = $param["ErrorMsg"];
  142. }
  143. if (array_key_exists("LivenessErrorCode",$param) and $param["LivenessErrorCode"] !== null) {
  144. $this->LivenessErrorCode = $param["LivenessErrorCode"];
  145. }
  146. if (array_key_exists("LivenessErrorMsg",$param) and $param["LivenessErrorMsg"] !== null) {
  147. $this->LivenessErrorMsg = $param["LivenessErrorMsg"];
  148. }
  149. if (array_key_exists("CompareErrorCode",$param) and $param["CompareErrorCode"] !== null) {
  150. $this->CompareErrorCode = $param["CompareErrorCode"];
  151. }
  152. if (array_key_exists("CompareErrorMsg",$param) and $param["CompareErrorMsg"] !== null) {
  153. $this->CompareErrorMsg = $param["CompareErrorMsg"];
  154. }
  155. if (array_key_exists("ReqTimestamp",$param) and $param["ReqTimestamp"] !== null) {
  156. $this->ReqTimestamp = $param["ReqTimestamp"];
  157. }
  158. if (array_key_exists("Similarity",$param) and $param["Similarity"] !== null) {
  159. $this->Similarity = $param["Similarity"];
  160. }
  161. if (array_key_exists("Seq",$param) and $param["Seq"] !== null) {
  162. $this->Seq = $param["Seq"];
  163. }
  164. }
  165. }