CheckIdCardInformationResponse.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250
  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. * CheckIdCardInformation返回参数结构体
  21. *
  22. * @method float getSim() 获取相似度,取值范围 [0.00, 100.00]。推荐相似度大于等于70时可判断为同一人,可根据具体场景自行调整阈值(阈值70的误通过率为千分之一,阈值80的误通过率是万分之一)
  23. * @method void setSim(float $Sim) 设置相似度,取值范围 [0.00, 100.00]。推荐相似度大于等于70时可判断为同一人,可根据具体场景自行调整阈值(阈值70的误通过率为千分之一,阈值80的误通过率是万分之一)
  24. * @method string getResult() 获取业务错误码,成功情况返回Success, 错误情况请参考下方错误码 列表中FailedOperation部分
  25. * @method void setResult(string $Result) 设置业务错误码,成功情况返回Success, 错误情况请参考下方错误码 列表中FailedOperation部分
  26. * @method string getDescription() 获取业务结果描述。
  27. * @method void setDescription(string $Description) 设置业务结果描述。
  28. * @method string getName() 获取姓名
  29. * @method void setName(string $Name) 设置姓名
  30. * @method string getSex() 获取性别
  31. * @method void setSex(string $Sex) 设置性别
  32. * @method string getNation() 获取民族
  33. * @method void setNation(string $Nation) 设置民族
  34. * @method string getBirth() 获取出生日期
  35. * @method void setBirth(string $Birth) 设置出生日期
  36. * @method string getAddress() 获取地址
  37. * @method void setAddress(string $Address) 设置地址
  38. * @method string getIdNum() 获取身份证号
  39. * @method void setIdNum(string $IdNum) 设置身份证号
  40. * @method string getPortrait() 获取身份证头像照片的base64编码,如果抠图失败会拿整张身份证做比对并返回空。
  41. * @method void setPortrait(string $Portrait) 设置身份证头像照片的base64编码,如果抠图失败会拿整张身份证做比对并返回空。
  42. * @method string getWarnings() 获取告警信息,当在Config中配置了告警信息会停止人像比对,Result返回错误(FailedOperation.OcrWarningOccurred)并有此告警信息,Code 告警码列表和释义:
  43. -9101 身份证边框不完整告警,
  44. -9102 身份证复印件告警,
  45. -9103 身份证翻拍告警,
  46. -9105 身份证框内遮挡告警,
  47. -9104 临时身份证告警,
  48. -9106 身份证 PS 告警。
  49. -8001 图片模糊告警
  50. 多个会 | 隔开如 "-9101|-9106|-9104"
  51. * @method void setWarnings(string $Warnings) 设置告警信息,当在Config中配置了告警信息会停止人像比对,Result返回错误(FailedOperation.OcrWarningOccurred)并有此告警信息,Code 告警码列表和释义:
  52. -9101 身份证边框不完整告警,
  53. -9102 身份证复印件告警,
  54. -9103 身份证翻拍告警,
  55. -9105 身份证框内遮挡告警,
  56. -9104 临时身份证告警,
  57. -9106 身份证 PS 告警。
  58. -8001 图片模糊告警
  59. 多个会 | 隔开如 "-9101|-9106|-9104"
  60. * @method float getQuality() 获取图片质量分数,当请求Config中配置图片模糊告警该参数才有意义,取值范围(0~100),目前默认阈值是50分,低于50分会触发模糊告警。
  61. * @method void setQuality(float $Quality) 设置图片质量分数,当请求Config中配置图片模糊告警该参数才有意义,取值范围(0~100),目前默认阈值是50分,低于50分会触发模糊告警。
  62. * @method Encryption getEncryption() 获取敏感数据加密信息。
  63. 注意:此字段可能返回 null,表示取不到有效值。
  64. * @method void setEncryption(Encryption $Encryption) 设置敏感数据加密信息。
  65. 注意:此字段可能返回 null,表示取不到有效值。
  66. * @method string getRequestId() 获取唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
  67. * @method void setRequestId(string $RequestId) 设置唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
  68. */
  69. class CheckIdCardInformationResponse extends AbstractModel
  70. {
  71. /**
  72. * @var float 相似度,取值范围 [0.00, 100.00]。推荐相似度大于等于70时可判断为同一人,可根据具体场景自行调整阈值(阈值70的误通过率为千分之一,阈值80的误通过率是万分之一)
  73. */
  74. public $Sim;
  75. /**
  76. * @var string 业务错误码,成功情况返回Success, 错误情况请参考下方错误码 列表中FailedOperation部分
  77. */
  78. public $Result;
  79. /**
  80. * @var string 业务结果描述。
  81. */
  82. public $Description;
  83. /**
  84. * @var string 姓名
  85. */
  86. public $Name;
  87. /**
  88. * @var string 性别
  89. */
  90. public $Sex;
  91. /**
  92. * @var string 民族
  93. */
  94. public $Nation;
  95. /**
  96. * @var string 出生日期
  97. */
  98. public $Birth;
  99. /**
  100. * @var string 地址
  101. */
  102. public $Address;
  103. /**
  104. * @var string 身份证号
  105. */
  106. public $IdNum;
  107. /**
  108. * @var string 身份证头像照片的base64编码,如果抠图失败会拿整张身份证做比对并返回空。
  109. */
  110. public $Portrait;
  111. /**
  112. * @var string 告警信息,当在Config中配置了告警信息会停止人像比对,Result返回错误(FailedOperation.OcrWarningOccurred)并有此告警信息,Code 告警码列表和释义:
  113. -9101 身份证边框不完整告警,
  114. -9102 身份证复印件告警,
  115. -9103 身份证翻拍告警,
  116. -9105 身份证框内遮挡告警,
  117. -9104 临时身份证告警,
  118. -9106 身份证 PS 告警。
  119. -8001 图片模糊告警
  120. 多个会 | 隔开如 "-9101|-9106|-9104"
  121. */
  122. public $Warnings;
  123. /**
  124. * @var float 图片质量分数,当请求Config中配置图片模糊告警该参数才有意义,取值范围(0~100),目前默认阈值是50分,低于50分会触发模糊告警。
  125. */
  126. public $Quality;
  127. /**
  128. * @var Encryption 敏感数据加密信息。
  129. 注意:此字段可能返回 null,表示取不到有效值。
  130. */
  131. public $Encryption;
  132. /**
  133. * @var string 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
  134. */
  135. public $RequestId;
  136. /**
  137. * @param float $Sim 相似度,取值范围 [0.00, 100.00]。推荐相似度大于等于70时可判断为同一人,可根据具体场景自行调整阈值(阈值70的误通过率为千分之一,阈值80的误通过率是万分之一)
  138. * @param string $Result 业务错误码,成功情况返回Success, 错误情况请参考下方错误码 列表中FailedOperation部分
  139. * @param string $Description 业务结果描述。
  140. * @param string $Name 姓名
  141. * @param string $Sex 性别
  142. * @param string $Nation 民族
  143. * @param string $Birth 出生日期
  144. * @param string $Address 地址
  145. * @param string $IdNum 身份证号
  146. * @param string $Portrait 身份证头像照片的base64编码,如果抠图失败会拿整张身份证做比对并返回空。
  147. * @param string $Warnings 告警信息,当在Config中配置了告警信息会停止人像比对,Result返回错误(FailedOperation.OcrWarningOccurred)并有此告警信息,Code 告警码列表和释义:
  148. -9101 身份证边框不完整告警,
  149. -9102 身份证复印件告警,
  150. -9103 身份证翻拍告警,
  151. -9105 身份证框内遮挡告警,
  152. -9104 临时身份证告警,
  153. -9106 身份证 PS 告警。
  154. -8001 图片模糊告警
  155. 多个会 | 隔开如 "-9101|-9106|-9104"
  156. * @param float $Quality 图片质量分数,当请求Config中配置图片模糊告警该参数才有意义,取值范围(0~100),目前默认阈值是50分,低于50分会触发模糊告警。
  157. * @param Encryption $Encryption 敏感数据加密信息。
  158. 注意:此字段可能返回 null,表示取不到有效值。
  159. * @param string $RequestId 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
  160. */
  161. function __construct()
  162. {
  163. }
  164. /**
  165. * For internal only. DO NOT USE IT.
  166. */
  167. public function deserialize($param)
  168. {
  169. if ($param === null) {
  170. return;
  171. }
  172. if (array_key_exists("Sim",$param) and $param["Sim"] !== null) {
  173. $this->Sim = $param["Sim"];
  174. }
  175. if (array_key_exists("Result",$param) and $param["Result"] !== null) {
  176. $this->Result = $param["Result"];
  177. }
  178. if (array_key_exists("Description",$param) and $param["Description"] !== null) {
  179. $this->Description = $param["Description"];
  180. }
  181. if (array_key_exists("Name",$param) and $param["Name"] !== null) {
  182. $this->Name = $param["Name"];
  183. }
  184. if (array_key_exists("Sex",$param) and $param["Sex"] !== null) {
  185. $this->Sex = $param["Sex"];
  186. }
  187. if (array_key_exists("Nation",$param) and $param["Nation"] !== null) {
  188. $this->Nation = $param["Nation"];
  189. }
  190. if (array_key_exists("Birth",$param) and $param["Birth"] !== null) {
  191. $this->Birth = $param["Birth"];
  192. }
  193. if (array_key_exists("Address",$param) and $param["Address"] !== null) {
  194. $this->Address = $param["Address"];
  195. }
  196. if (array_key_exists("IdNum",$param) and $param["IdNum"] !== null) {
  197. $this->IdNum = $param["IdNum"];
  198. }
  199. if (array_key_exists("Portrait",$param) and $param["Portrait"] !== null) {
  200. $this->Portrait = $param["Portrait"];
  201. }
  202. if (array_key_exists("Warnings",$param) and $param["Warnings"] !== null) {
  203. $this->Warnings = $param["Warnings"];
  204. }
  205. if (array_key_exists("Quality",$param) and $param["Quality"] !== null) {
  206. $this->Quality = $param["Quality"];
  207. }
  208. if (array_key_exists("Encryption",$param) and $param["Encryption"] !== null) {
  209. $this->Encryption = new Encryption();
  210. $this->Encryption->deserialize($param["Encryption"]);
  211. }
  212. if (array_key_exists("RequestId",$param) and $param["RequestId"] !== null) {
  213. $this->RequestId = $param["RequestId"];
  214. }
  215. }
  216. }