CompareResult.php 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310
  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 string getErrorCode() 获取最终比对结果
  23. * @method void setErrorCode(string $ErrorCode) 设置最终比对结果
  24. * @method string getErrorMsg() 获取最终比对结果描述
  25. * @method void setErrorMsg(string $ErrorMsg) 设置最终比对结果描述
  26. * @method FileInfo getLiveData() 获取本次活体SDK生成的活体算法数据包
  27. * @method void setLiveData(FileInfo $LiveData) 设置本次活体SDK生成的活体算法数据包
  28. * @method FileInfo getLiveVideo() 获取本次用户活体验证过程的视频,url链接有效期10分钟。
  29. * @method void setLiveVideo(FileInfo $LiveVideo) 设置本次用户活体验证过程的视频,url链接有效期10分钟。
  30. * @method string getLiveErrorCode() 获取活体认证结果码
  31. * @method void setLiveErrorCode(string $LiveErrorCode) 设置活体认证结果码
  32. * @method string getLiveErrorMsg() 获取活体认证结果描述
  33. * @method void setLiveErrorMsg(string $LiveErrorMsg) 设置活体认证结果描述
  34. * @method FileInfo getBestFrame() 获取本次活体的最佳人像截图,url链接有效期10分钟。
  35. 注意:此字段可能返回 null,表示取不到有效值。
  36. * @method void setBestFrame(FileInfo $BestFrame) 设置本次活体的最佳人像截图,url链接有效期10分钟。
  37. 注意:此字段可能返回 null,表示取不到有效值。
  38. * @method FileInfo getProfileImage() 获取证件照头像截图,url链接有效期10分钟。
  39. * @method void setProfileImage(FileInfo $ProfileImage) 设置证件照头像截图,url链接有效期10分钟。
  40. * @method string getCompareErrorCode() 获取人脸比对结果码
  41. 注意:此字段可能返回 null,表示取不到有效值。
  42. * @method void setCompareErrorCode(string $CompareErrorCode) 设置人脸比对结果码
  43. 注意:此字段可能返回 null,表示取不到有效值。
  44. * @method string getCompareErrorMsg() 获取人脸比对结果描述
  45. 注意:此字段可能返回 null,表示取不到有效值。
  46. * @method void setCompareErrorMsg(string $CompareErrorMsg) 设置人脸比对结果描述
  47. 注意:此字段可能返回 null,表示取不到有效值。
  48. * @method float getSim() 获取相似度
  49. 注意:此字段可能返回 null,表示取不到有效值。
  50. * @method void setSim(float $Sim) 设置相似度
  51. 注意:此字段可能返回 null,表示取不到有效值。
  52. * @method boolean getIsNeedCharge() 获取该字段废弃
  53. * @method void setIsNeedCharge(boolean $IsNeedCharge) 设置该字段废弃
  54. * @method FileInfo getCardInfoInputJson() 获取用户编辑后的证件照信息,如果DisableChangeOcrResult为true禁用编辑无该值。url链接有效期10分钟。格式为json文本信息。
  55. IdCardType为HK时:
  56. - CnName string 中文姓名
  57. - EnName string 英文姓名
  58. - TelexCode string 中文姓名对应电码
  59. - Sex string 性别 :“男M”或“女F”
  60. - Birthday string 出生日期
  61. - Permanent int 永久性居民身份证。0:非永久; 1:永久; -1:未知。
  62. - IdNum string 身份证号码
  63. - Symbol string 证件符号,出生日期下的符号,例如"***AZ"
  64. - FirstIssueDate string 首次签发日期
  65. - CurrentIssueDate string 最近领用日期
  66. IdCardType为ML时:
  67. - Sex string 男:LELAKI 女:PEREMPUAN
  68. - Birthday string
  69. - ID string
  70. - Name string
  71. - Address string
  72. - Type string 证件类型
  73. 注意:此字段可能返回 null,表示取不到有效值。
  74. * @method void setCardInfoInputJson(FileInfo $CardInfoInputJson) 设置用户编辑后的证件照信息,如果DisableChangeOcrResult为true禁用编辑无该值。url链接有效期10分钟。格式为json文本信息。
  75. IdCardType为HK时:
  76. - CnName string 中文姓名
  77. - EnName string 英文姓名
  78. - TelexCode string 中文姓名对应电码
  79. - Sex string 性别 :“男M”或“女F”
  80. - Birthday string 出生日期
  81. - Permanent int 永久性居民身份证。0:非永久; 1:永久; -1:未知。
  82. - IdNum string 身份证号码
  83. - Symbol string 证件符号,出生日期下的符号,例如"***AZ"
  84. - FirstIssueDate string 首次签发日期
  85. - CurrentIssueDate string 最近领用日期
  86. IdCardType为ML时:
  87. - Sex string 男:LELAKI 女:PEREMPUAN
  88. - Birthday string
  89. - ID string
  90. - Name string
  91. - Address string
  92. - Type string 证件类型
  93. 注意:此字段可能返回 null,表示取不到有效值。
  94. * @method string getRequestId() 获取本次认证的请求标识。
  95. * @method void setRequestId(string $RequestId) 设置本次认证的请求标识。
  96. */
  97. class CompareResult extends AbstractModel
  98. {
  99. /**
  100. * @var string 最终比对结果
  101. */
  102. public $ErrorCode;
  103. /**
  104. * @var string 最终比对结果描述
  105. */
  106. public $ErrorMsg;
  107. /**
  108. * @var FileInfo 本次活体SDK生成的活体算法数据包
  109. */
  110. public $LiveData;
  111. /**
  112. * @var FileInfo 本次用户活体验证过程的视频,url链接有效期10分钟。
  113. */
  114. public $LiveVideo;
  115. /**
  116. * @var string 活体认证结果码
  117. */
  118. public $LiveErrorCode;
  119. /**
  120. * @var string 活体认证结果描述
  121. */
  122. public $LiveErrorMsg;
  123. /**
  124. * @var FileInfo 本次活体的最佳人像截图,url链接有效期10分钟。
  125. 注意:此字段可能返回 null,表示取不到有效值。
  126. */
  127. public $BestFrame;
  128. /**
  129. * @var FileInfo 证件照头像截图,url链接有效期10分钟。
  130. */
  131. public $ProfileImage;
  132. /**
  133. * @var string 人脸比对结果码
  134. 注意:此字段可能返回 null,表示取不到有效值。
  135. */
  136. public $CompareErrorCode;
  137. /**
  138. * @var string 人脸比对结果描述
  139. 注意:此字段可能返回 null,表示取不到有效值。
  140. */
  141. public $CompareErrorMsg;
  142. /**
  143. * @var float 相似度
  144. 注意:此字段可能返回 null,表示取不到有效值。
  145. */
  146. public $Sim;
  147. /**
  148. * @var boolean 该字段废弃
  149. */
  150. public $IsNeedCharge;
  151. /**
  152. * @var FileInfo 用户编辑后的证件照信息,如果DisableChangeOcrResult为true禁用编辑无该值。url链接有效期10分钟。格式为json文本信息。
  153. IdCardType为HK时:
  154. - CnName string 中文姓名
  155. - EnName string 英文姓名
  156. - TelexCode string 中文姓名对应电码
  157. - Sex string 性别 :“男M”或“女F”
  158. - Birthday string 出生日期
  159. - Permanent int 永久性居民身份证。0:非永久; 1:永久; -1:未知。
  160. - IdNum string 身份证号码
  161. - Symbol string 证件符号,出生日期下的符号,例如"***AZ"
  162. - FirstIssueDate string 首次签发日期
  163. - CurrentIssueDate string 最近领用日期
  164. IdCardType为ML时:
  165. - Sex string 男:LELAKI 女:PEREMPUAN
  166. - Birthday string
  167. - ID string
  168. - Name string
  169. - Address string
  170. - Type string 证件类型
  171. 注意:此字段可能返回 null,表示取不到有效值。
  172. */
  173. public $CardInfoInputJson;
  174. /**
  175. * @var string 本次认证的请求标识。
  176. */
  177. public $RequestId;
  178. /**
  179. * @param string $ErrorCode 最终比对结果
  180. * @param string $ErrorMsg 最终比对结果描述
  181. * @param FileInfo $LiveData 本次活体SDK生成的活体算法数据包
  182. * @param FileInfo $LiveVideo 本次用户活体验证过程的视频,url链接有效期10分钟。
  183. * @param string $LiveErrorCode 活体认证结果码
  184. * @param string $LiveErrorMsg 活体认证结果描述
  185. * @param FileInfo $BestFrame 本次活体的最佳人像截图,url链接有效期10分钟。
  186. 注意:此字段可能返回 null,表示取不到有效值。
  187. * @param FileInfo $ProfileImage 证件照头像截图,url链接有效期10分钟。
  188. * @param string $CompareErrorCode 人脸比对结果码
  189. 注意:此字段可能返回 null,表示取不到有效值。
  190. * @param string $CompareErrorMsg 人脸比对结果描述
  191. 注意:此字段可能返回 null,表示取不到有效值。
  192. * @param float $Sim 相似度
  193. 注意:此字段可能返回 null,表示取不到有效值。
  194. * @param boolean $IsNeedCharge 该字段废弃
  195. * @param FileInfo $CardInfoInputJson 用户编辑后的证件照信息,如果DisableChangeOcrResult为true禁用编辑无该值。url链接有效期10分钟。格式为json文本信息。
  196. IdCardType为HK时:
  197. - CnName string 中文姓名
  198. - EnName string 英文姓名
  199. - TelexCode string 中文姓名对应电码
  200. - Sex string 性别 :“男M”或“女F”
  201. - Birthday string 出生日期
  202. - Permanent int 永久性居民身份证。0:非永久; 1:永久; -1:未知。
  203. - IdNum string 身份证号码
  204. - Symbol string 证件符号,出生日期下的符号,例如"***AZ"
  205. - FirstIssueDate string 首次签发日期
  206. - CurrentIssueDate string 最近领用日期
  207. IdCardType为ML时:
  208. - Sex string 男:LELAKI 女:PEREMPUAN
  209. - Birthday string
  210. - ID string
  211. - Name string
  212. - Address string
  213. - Type string 证件类型
  214. 注意:此字段可能返回 null,表示取不到有效值。
  215. * @param string $RequestId 本次认证的请求标识。
  216. */
  217. function __construct()
  218. {
  219. }
  220. /**
  221. * For internal only. DO NOT USE IT.
  222. */
  223. public function deserialize($param)
  224. {
  225. if ($param === null) {
  226. return;
  227. }
  228. if (array_key_exists("ErrorCode",$param) and $param["ErrorCode"] !== null) {
  229. $this->ErrorCode = $param["ErrorCode"];
  230. }
  231. if (array_key_exists("ErrorMsg",$param) and $param["ErrorMsg"] !== null) {
  232. $this->ErrorMsg = $param["ErrorMsg"];
  233. }
  234. if (array_key_exists("LiveData",$param) and $param["LiveData"] !== null) {
  235. $this->LiveData = new FileInfo();
  236. $this->LiveData->deserialize($param["LiveData"]);
  237. }
  238. if (array_key_exists("LiveVideo",$param) and $param["LiveVideo"] !== null) {
  239. $this->LiveVideo = new FileInfo();
  240. $this->LiveVideo->deserialize($param["LiveVideo"]);
  241. }
  242. if (array_key_exists("LiveErrorCode",$param) and $param["LiveErrorCode"] !== null) {
  243. $this->LiveErrorCode = $param["LiveErrorCode"];
  244. }
  245. if (array_key_exists("LiveErrorMsg",$param) and $param["LiveErrorMsg"] !== null) {
  246. $this->LiveErrorMsg = $param["LiveErrorMsg"];
  247. }
  248. if (array_key_exists("BestFrame",$param) and $param["BestFrame"] !== null) {
  249. $this->BestFrame = new FileInfo();
  250. $this->BestFrame->deserialize($param["BestFrame"]);
  251. }
  252. if (array_key_exists("ProfileImage",$param) and $param["ProfileImage"] !== null) {
  253. $this->ProfileImage = new FileInfo();
  254. $this->ProfileImage->deserialize($param["ProfileImage"]);
  255. }
  256. if (array_key_exists("CompareErrorCode",$param) and $param["CompareErrorCode"] !== null) {
  257. $this->CompareErrorCode = $param["CompareErrorCode"];
  258. }
  259. if (array_key_exists("CompareErrorMsg",$param) and $param["CompareErrorMsg"] !== null) {
  260. $this->CompareErrorMsg = $param["CompareErrorMsg"];
  261. }
  262. if (array_key_exists("Sim",$param) and $param["Sim"] !== null) {
  263. $this->Sim = $param["Sim"];
  264. }
  265. if (array_key_exists("IsNeedCharge",$param) and $param["IsNeedCharge"] !== null) {
  266. $this->IsNeedCharge = $param["IsNeedCharge"];
  267. }
  268. if (array_key_exists("CardInfoInputJson",$param) and $param["CardInfoInputJson"] !== null) {
  269. $this->CardInfoInputJson = new FileInfo();
  270. $this->CardInfoInputJson->deserialize($param["CardInfoInputJson"]);
  271. }
  272. if (array_key_exists("RequestId",$param) and $param["RequestId"] !== null) {
  273. $this->RequestId = $param["RequestId"];
  274. }
  275. }
  276. }