BankCardVerificationResponse.php 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  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. * BankCardVerification返回参数结构体
  21. *
  22. * @method string getResult() 获取认证结果码
  23. 收费结果码:
  24. '0': '认证通过'
  25. '-1': '认证未通过'
  26. '-5': '持卡人信息有误'
  27. '-6': '未开通无卡支付'
  28. '-7': '此卡被没收'
  29. '-8': '无效卡号'
  30. '-9': '此卡无对应发卡行'
  31. '-10': '该卡未初始化或睡眠卡'
  32. '-11': '作弊卡、吞卡'
  33. '-12': '此卡已挂失'
  34. '-13': '该卡已过期'
  35. '-14': '受限制的卡'
  36. '-15': '密码错误次数超限'
  37. '-16': '发卡行不支持此交易'
  38. 不收费结果码:
  39. '-2': '姓名校验不通过'
  40. '-3': '身份证号码有误'
  41. '-4': '银行卡号码有误'
  42. '-17': '验证中心服务繁忙'
  43. * @method void setResult(string $Result) 设置认证结果码
  44. 收费结果码:
  45. '0': '认证通过'
  46. '-1': '认证未通过'
  47. '-5': '持卡人信息有误'
  48. '-6': '未开通无卡支付'
  49. '-7': '此卡被没收'
  50. '-8': '无效卡号'
  51. '-9': '此卡无对应发卡行'
  52. '-10': '该卡未初始化或睡眠卡'
  53. '-11': '作弊卡、吞卡'
  54. '-12': '此卡已挂失'
  55. '-13': '该卡已过期'
  56. '-14': '受限制的卡'
  57. '-15': '密码错误次数超限'
  58. '-16': '发卡行不支持此交易'
  59. 不收费结果码:
  60. '-2': '姓名校验不通过'
  61. '-3': '身份证号码有误'
  62. '-4': '银行卡号码有误'
  63. '-17': '验证中心服务繁忙'
  64. * @method string getDescription() 获取业务结果描述。
  65. * @method void setDescription(string $Description) 设置业务结果描述。
  66. * @method string getRequestId() 获取唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
  67. * @method void setRequestId(string $RequestId) 设置唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
  68. */
  69. class BankCardVerificationResponse extends AbstractModel
  70. {
  71. /**
  72. * @var string 认证结果码
  73. 收费结果码:
  74. '0': '认证通过'
  75. '-1': '认证未通过'
  76. '-5': '持卡人信息有误'
  77. '-6': '未开通无卡支付'
  78. '-7': '此卡被没收'
  79. '-8': '无效卡号'
  80. '-9': '此卡无对应发卡行'
  81. '-10': '该卡未初始化或睡眠卡'
  82. '-11': '作弊卡、吞卡'
  83. '-12': '此卡已挂失'
  84. '-13': '该卡已过期'
  85. '-14': '受限制的卡'
  86. '-15': '密码错误次数超限'
  87. '-16': '发卡行不支持此交易'
  88. 不收费结果码:
  89. '-2': '姓名校验不通过'
  90. '-3': '身份证号码有误'
  91. '-4': '银行卡号码有误'
  92. '-17': '验证中心服务繁忙'
  93. */
  94. public $Result;
  95. /**
  96. * @var string 业务结果描述。
  97. */
  98. public $Description;
  99. /**
  100. * @var string 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
  101. */
  102. public $RequestId;
  103. /**
  104. * @param string $Result 认证结果码
  105. 收费结果码:
  106. '0': '认证通过'
  107. '-1': '认证未通过'
  108. '-5': '持卡人信息有误'
  109. '-6': '未开通无卡支付'
  110. '-7': '此卡被没收'
  111. '-8': '无效卡号'
  112. '-9': '此卡无对应发卡行'
  113. '-10': '该卡未初始化或睡眠卡'
  114. '-11': '作弊卡、吞卡'
  115. '-12': '此卡已挂失'
  116. '-13': '该卡已过期'
  117. '-14': '受限制的卡'
  118. '-15': '密码错误次数超限'
  119. '-16': '发卡行不支持此交易'
  120. 不收费结果码:
  121. '-2': '姓名校验不通过'
  122. '-3': '身份证号码有误'
  123. '-4': '银行卡号码有误'
  124. '-17': '验证中心服务繁忙'
  125. * @param string $Description 业务结果描述。
  126. * @param string $RequestId 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
  127. */
  128. function __construct()
  129. {
  130. }
  131. /**
  132. * For internal only. DO NOT USE IT.
  133. */
  134. public function deserialize($param)
  135. {
  136. if ($param === null) {
  137. return;
  138. }
  139. if (array_key_exists("Result",$param) and $param["Result"] !== null) {
  140. $this->Result = $param["Result"];
  141. }
  142. if (array_key_exists("Description",$param) and $param["Description"] !== null) {
  143. $this->Description = $param["Description"];
  144. }
  145. if (array_key_exists("RequestId",$param) and $param["RequestId"] !== null) {
  146. $this->RequestId = $param["RequestId"];
  147. }
  148. }
  149. }