MinorsVerificationResponse.php 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  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. * MinorsVerification返回参数结构体
  21. *
  22. * @method string getResult() 获取结果码,收费情况如下。
  23. 收费结果码:
  24. 0: 成年
  25. -1: 未成年
  26. -3: 姓名和身份证号不一致
  27. 不收费结果码:
  28. -2: 未查询到手机号信息
  29. -4: 非法身份证号(长度、校验位等不正确)
  30. -5: 非法姓名(长度、格式等不正确)
  31. -6: 权威数据源服务异常
  32. -7: 未查询到身份信息
  33. -8: 权威数据源升级中,请稍后再试
  34. * @method void setResult(string $Result) 设置结果码,收费情况如下。
  35. 收费结果码:
  36. 0: 成年
  37. -1: 未成年
  38. -3: 姓名和身份证号不一致
  39. 不收费结果码:
  40. -2: 未查询到手机号信息
  41. -4: 非法身份证号(长度、校验位等不正确)
  42. -5: 非法姓名(长度、格式等不正确)
  43. -6: 权威数据源服务异常
  44. -7: 未查询到身份信息
  45. -8: 权威数据源升级中,请稍后再试
  46. * @method string getDescription() 获取业务结果描述。
  47. * @method void setDescription(string $Description) 设置业务结果描述。
  48. * @method string getAgeRange() 获取该字段的值为年龄区间。格式为[a,b),
  49. [0,8)表示年龄小于8周岁区间,不包括8岁;
  50. [8,16)表示年龄8-16周岁区间,不包括16岁;
  51. [16,18)表示年龄16-18周岁区间,不包括18岁;
  52. [18,+)表示年龄大于18周岁。
  53. * @method void setAgeRange(string $AgeRange) 设置该字段的值为年龄区间。格式为[a,b),
  54. [0,8)表示年龄小于8周岁区间,不包括8岁;
  55. [8,16)表示年龄8-16周岁区间,不包括16岁;
  56. [16,18)表示年龄16-18周岁区间,不包括18岁;
  57. [18,+)表示年龄大于18周岁。
  58. * @method string getRequestId() 获取唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
  59. * @method void setRequestId(string $RequestId) 设置唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
  60. */
  61. class MinorsVerificationResponse extends AbstractModel
  62. {
  63. /**
  64. * @var string 结果码,收费情况如下。
  65. 收费结果码:
  66. 0: 成年
  67. -1: 未成年
  68. -3: 姓名和身份证号不一致
  69. 不收费结果码:
  70. -2: 未查询到手机号信息
  71. -4: 非法身份证号(长度、校验位等不正确)
  72. -5: 非法姓名(长度、格式等不正确)
  73. -6: 权威数据源服务异常
  74. -7: 未查询到身份信息
  75. -8: 权威数据源升级中,请稍后再试
  76. */
  77. public $Result;
  78. /**
  79. * @var string 业务结果描述。
  80. */
  81. public $Description;
  82. /**
  83. * @var string 该字段的值为年龄区间。格式为[a,b),
  84. [0,8)表示年龄小于8周岁区间,不包括8岁;
  85. [8,16)表示年龄8-16周岁区间,不包括16岁;
  86. [16,18)表示年龄16-18周岁区间,不包括18岁;
  87. [18,+)表示年龄大于18周岁。
  88. */
  89. public $AgeRange;
  90. /**
  91. * @var string 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
  92. */
  93. public $RequestId;
  94. /**
  95. * @param string $Result 结果码,收费情况如下。
  96. 收费结果码:
  97. 0: 成年
  98. -1: 未成年
  99. -3: 姓名和身份证号不一致
  100. 不收费结果码:
  101. -2: 未查询到手机号信息
  102. -4: 非法身份证号(长度、校验位等不正确)
  103. -5: 非法姓名(长度、格式等不正确)
  104. -6: 权威数据源服务异常
  105. -7: 未查询到身份信息
  106. -8: 权威数据源升级中,请稍后再试
  107. * @param string $Description 业务结果描述。
  108. * @param string $AgeRange 该字段的值为年龄区间。格式为[a,b),
  109. [0,8)表示年龄小于8周岁区间,不包括8岁;
  110. [8,16)表示年龄8-16周岁区间,不包括16岁;
  111. [16,18)表示年龄16-18周岁区间,不包括18岁;
  112. [18,+)表示年龄大于18周岁。
  113. * @param string $RequestId 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
  114. */
  115. function __construct()
  116. {
  117. }
  118. /**
  119. * For internal only. DO NOT USE IT.
  120. */
  121. public function deserialize($param)
  122. {
  123. if ($param === null) {
  124. return;
  125. }
  126. if (array_key_exists("Result",$param) and $param["Result"] !== null) {
  127. $this->Result = $param["Result"];
  128. }
  129. if (array_key_exists("Description",$param) and $param["Description"] !== null) {
  130. $this->Description = $param["Description"];
  131. }
  132. if (array_key_exists("AgeRange",$param) and $param["AgeRange"] !== null) {
  133. $this->AgeRange = $param["AgeRange"];
  134. }
  135. if (array_key_exists("RequestId",$param) and $param["RequestId"] !== null) {
  136. $this->RequestId = $param["RequestId"];
  137. }
  138. }
  139. }