CheckIdNameDateResponse.php 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  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. * CheckIdNameDate返回参数结构体
  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 getRequestId() 获取唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
  47. * @method void setRequestId(string $RequestId) 设置唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
  48. */
  49. class CheckIdNameDateResponse extends AbstractModel
  50. {
  51. /**
  52. * @var string 认证结果码,收费情况如下。
  53. 收费结果码:
  54. 0: 一致
  55. -1: 不一致
  56. 不收费结果码:
  57. -2: 非法身份证号(长度、校验位等不正确)
  58. -3: 非法姓名(长度、格式等不正确)
  59. -4: 非法有效期(长度、格式等不正确)
  60. -5: 身份信息无效
  61. -6: 证件库服务异常
  62. -7: 证件库中无此身份证记录
  63. */
  64. public $Result;
  65. /**
  66. * @var string 业务结果描述。
  67. */
  68. public $Description;
  69. /**
  70. * @var string 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
  71. */
  72. public $RequestId;
  73. /**
  74. * @param string $Result 认证结果码,收费情况如下。
  75. 收费结果码:
  76. 0: 一致
  77. -1: 不一致
  78. 不收费结果码:
  79. -2: 非法身份证号(长度、校验位等不正确)
  80. -3: 非法姓名(长度、格式等不正确)
  81. -4: 非法有效期(长度、格式等不正确)
  82. -5: 身份信息无效
  83. -6: 证件库服务异常
  84. -7: 证件库中无此身份证记录
  85. * @param string $Description 业务结果描述。
  86. * @param string $RequestId 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
  87. */
  88. function __construct()
  89. {
  90. }
  91. /**
  92. * For internal only. DO NOT USE IT.
  93. */
  94. public function deserialize($param)
  95. {
  96. if ($param === null) {
  97. return;
  98. }
  99. if (array_key_exists("Result",$param) and $param["Result"] !== null) {
  100. $this->Result = $param["Result"];
  101. }
  102. if (array_key_exists("Description",$param) and $param["Description"] !== null) {
  103. $this->Description = $param["Description"];
  104. }
  105. if (array_key_exists("RequestId",$param) and $param["RequestId"] !== null) {
  106. $this->RequestId = $param["RequestId"];
  107. }
  108. }
  109. }