IdCardOCRVerificationResponse.php 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  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. * IdCardOCRVerification返回参数结构体
  21. *
  22. * @method string getResult() 获取认证结果码,收费情况如下。
  23. 收费结果码:
  24. 0: 姓名和身份证号一致
  25. -1: 姓名和身份证号不一致
  26. 不收费结果码:
  27. -2: 非法身份证号(长度、校验位等不正确)
  28. -3: 非法姓名(长度、格式等不正确)
  29. -4: 证件库服务异常
  30. -5: 证件库中无此身份证记录
  31. -6: 权威比对系统升级中,请稍后再试
  32. -7: 认证次数超过当日限制
  33. * @method void setResult(string $Result) 设置认证结果码,收费情况如下。
  34. 收费结果码:
  35. 0: 姓名和身份证号一致
  36. -1: 姓名和身份证号不一致
  37. 不收费结果码:
  38. -2: 非法身份证号(长度、校验位等不正确)
  39. -3: 非法姓名(长度、格式等不正确)
  40. -4: 证件库服务异常
  41. -5: 证件库中无此身份证记录
  42. -6: 权威比对系统升级中,请稍后再试
  43. -7: 认证次数超过当日限制
  44. * @method string getDescription() 获取业务结果描述。
  45. * @method void setDescription(string $Description) 设置业务结果描述。
  46. * @method string getName() 获取用于验证的姓名
  47. * @method void setName(string $Name) 设置用于验证的姓名
  48. * @method string getIdCard() 获取用于验证的身份证号
  49. * @method void setIdCard(string $IdCard) 设置用于验证的身份证号
  50. * @method string getSex() 获取OCR得到的性别
  51. 注意:此字段可能返回 null,表示取不到有效值。
  52. * @method void setSex(string $Sex) 设置OCR得到的性别
  53. 注意:此字段可能返回 null,表示取不到有效值。
  54. * @method string getNation() 获取OCR得到的民族
  55. 注意:此字段可能返回 null,表示取不到有效值。
  56. * @method void setNation(string $Nation) 设置OCR得到的民族
  57. 注意:此字段可能返回 null,表示取不到有效值。
  58. * @method string getBirth() 获取OCR得到的生日
  59. 注意:此字段可能返回 null,表示取不到有效值。
  60. * @method void setBirth(string $Birth) 设置OCR得到的生日
  61. 注意:此字段可能返回 null,表示取不到有效值。
  62. * @method string getAddress() 获取OCR得到的地址
  63. 注意:此字段可能返回 null,表示取不到有效值。
  64. * @method void setAddress(string $Address) 设置OCR得到的地址
  65. 注意:此字段可能返回 null,表示取不到有效值。
  66. * @method string getRequestId() 获取唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
  67. * @method void setRequestId(string $RequestId) 设置唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
  68. */
  69. class IdCardOCRVerificationResponse extends AbstractModel
  70. {
  71. /**
  72. * @var string 认证结果码,收费情况如下。
  73. 收费结果码:
  74. 0: 姓名和身份证号一致
  75. -1: 姓名和身份证号不一致
  76. 不收费结果码:
  77. -2: 非法身份证号(长度、校验位等不正确)
  78. -3: 非法姓名(长度、格式等不正确)
  79. -4: 证件库服务异常
  80. -5: 证件库中无此身份证记录
  81. -6: 权威比对系统升级中,请稍后再试
  82. -7: 认证次数超过当日限制
  83. */
  84. public $Result;
  85. /**
  86. * @var string 业务结果描述。
  87. */
  88. public $Description;
  89. /**
  90. * @var string 用于验证的姓名
  91. */
  92. public $Name;
  93. /**
  94. * @var string 用于验证的身份证号
  95. */
  96. public $IdCard;
  97. /**
  98. * @var string OCR得到的性别
  99. 注意:此字段可能返回 null,表示取不到有效值。
  100. */
  101. public $Sex;
  102. /**
  103. * @var string OCR得到的民族
  104. 注意:此字段可能返回 null,表示取不到有效值。
  105. */
  106. public $Nation;
  107. /**
  108. * @var string OCR得到的生日
  109. 注意:此字段可能返回 null,表示取不到有效值。
  110. */
  111. public $Birth;
  112. /**
  113. * @var string OCR得到的地址
  114. 注意:此字段可能返回 null,表示取不到有效值。
  115. */
  116. public $Address;
  117. /**
  118. * @var string 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
  119. */
  120. public $RequestId;
  121. /**
  122. * @param string $Result 认证结果码,收费情况如下。
  123. 收费结果码:
  124. 0: 姓名和身份证号一致
  125. -1: 姓名和身份证号不一致
  126. 不收费结果码:
  127. -2: 非法身份证号(长度、校验位等不正确)
  128. -3: 非法姓名(长度、格式等不正确)
  129. -4: 证件库服务异常
  130. -5: 证件库中无此身份证记录
  131. -6: 权威比对系统升级中,请稍后再试
  132. -7: 认证次数超过当日限制
  133. * @param string $Description 业务结果描述。
  134. * @param string $Name 用于验证的姓名
  135. * @param string $IdCard 用于验证的身份证号
  136. * @param string $Sex OCR得到的性别
  137. 注意:此字段可能返回 null,表示取不到有效值。
  138. * @param string $Nation OCR得到的民族
  139. 注意:此字段可能返回 null,表示取不到有效值。
  140. * @param string $Birth OCR得到的生日
  141. 注意:此字段可能返回 null,表示取不到有效值。
  142. * @param string $Address OCR得到的地址
  143. 注意:此字段可能返回 null,表示取不到有效值。
  144. * @param string $RequestId 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
  145. */
  146. function __construct()
  147. {
  148. }
  149. /**
  150. * For internal only. DO NOT USE IT.
  151. */
  152. public function deserialize($param)
  153. {
  154. if ($param === null) {
  155. return;
  156. }
  157. if (array_key_exists("Result",$param) and $param["Result"] !== null) {
  158. $this->Result = $param["Result"];
  159. }
  160. if (array_key_exists("Description",$param) and $param["Description"] !== null) {
  161. $this->Description = $param["Description"];
  162. }
  163. if (array_key_exists("Name",$param) and $param["Name"] !== null) {
  164. $this->Name = $param["Name"];
  165. }
  166. if (array_key_exists("IdCard",$param) and $param["IdCard"] !== null) {
  167. $this->IdCard = $param["IdCard"];
  168. }
  169. if (array_key_exists("Sex",$param) and $param["Sex"] !== null) {
  170. $this->Sex = $param["Sex"];
  171. }
  172. if (array_key_exists("Nation",$param) and $param["Nation"] !== null) {
  173. $this->Nation = $param["Nation"];
  174. }
  175. if (array_key_exists("Birth",$param) and $param["Birth"] !== null) {
  176. $this->Birth = $param["Birth"];
  177. }
  178. if (array_key_exists("Address",$param) and $param["Address"] !== null) {
  179. $this->Address = $param["Address"];
  180. }
  181. if (array_key_exists("RequestId",$param) and $param["RequestId"] !== null) {
  182. $this->RequestId = $param["RequestId"];
  183. }
  184. }
  185. }