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