PhoneVerificationRequest.php 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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. * PhoneVerification请求参数结构体
  21. *
  22. * @method string getIdCard() 获取身份证号
  23. * @method void setIdCard(string $IdCard) 设置身份证号
  24. * @method string getName() 获取姓名
  25. * @method void setName(string $Name) 设置姓名
  26. * @method string getPhone() 获取手机号
  27. * @method void setPhone(string $Phone) 设置手机号
  28. * @method string getCiphertextBlob() 获取有加密需求的用户,传入kms的CiphertextBlob,关于数据加密可查阅 <a href="https://cloud.tencent.com/document/product/1007/47180">数据加密</a> 文档。
  29. * @method void setCiphertextBlob(string $CiphertextBlob) 设置有加密需求的用户,传入kms的CiphertextBlob,关于数据加密可查阅 <a href="https://cloud.tencent.com/document/product/1007/47180">数据加密</a> 文档。
  30. * @method array getEncryptList() 获取在使用加密服务时,填入要被加密的字段。本接口中可填入加密后的IdCard,Name,Phone中的一个或多个。
  31. * @method void setEncryptList(array $EncryptList) 设置在使用加密服务时,填入要被加密的字段。本接口中可填入加密后的IdCard,Name,Phone中的一个或多个。
  32. * @method string getIv() 获取有加密需求的用户,传入CBC加密的初始向量。
  33. * @method void setIv(string $Iv) 设置有加密需求的用户,传入CBC加密的初始向量。
  34. */
  35. class PhoneVerificationRequest extends AbstractModel
  36. {
  37. /**
  38. * @var string 身份证号
  39. */
  40. public $IdCard;
  41. /**
  42. * @var string 姓名
  43. */
  44. public $Name;
  45. /**
  46. * @var string 手机号
  47. */
  48. public $Phone;
  49. /**
  50. * @var string 有加密需求的用户,传入kms的CiphertextBlob,关于数据加密可查阅 <a href="https://cloud.tencent.com/document/product/1007/47180">数据加密</a> 文档。
  51. */
  52. public $CiphertextBlob;
  53. /**
  54. * @var array 在使用加密服务时,填入要被加密的字段。本接口中可填入加密后的IdCard,Name,Phone中的一个或多个。
  55. */
  56. public $EncryptList;
  57. /**
  58. * @var string 有加密需求的用户,传入CBC加密的初始向量。
  59. */
  60. public $Iv;
  61. /**
  62. * @param string $IdCard 身份证号
  63. * @param string $Name 姓名
  64. * @param string $Phone 手机号
  65. * @param string $CiphertextBlob 有加密需求的用户,传入kms的CiphertextBlob,关于数据加密可查阅 <a href="https://cloud.tencent.com/document/product/1007/47180">数据加密</a> 文档。
  66. * @param array $EncryptList 在使用加密服务时,填入要被加密的字段。本接口中可填入加密后的IdCard,Name,Phone中的一个或多个。
  67. * @param string $Iv 有加密需求的用户,传入CBC加密的初始向量。
  68. */
  69. function __construct()
  70. {
  71. }
  72. /**
  73. * For internal only. DO NOT USE IT.
  74. */
  75. public function deserialize($param)
  76. {
  77. if ($param === null) {
  78. return;
  79. }
  80. if (array_key_exists("IdCard",$param) and $param["IdCard"] !== null) {
  81. $this->IdCard = $param["IdCard"];
  82. }
  83. if (array_key_exists("Name",$param) and $param["Name"] !== null) {
  84. $this->Name = $param["Name"];
  85. }
  86. if (array_key_exists("Phone",$param) and $param["Phone"] !== null) {
  87. $this->Phone = $param["Phone"];
  88. }
  89. if (array_key_exists("CiphertextBlob",$param) and $param["CiphertextBlob"] !== null) {
  90. $this->CiphertextBlob = $param["CiphertextBlob"];
  91. }
  92. if (array_key_exists("EncryptList",$param) and $param["EncryptList"] !== null) {
  93. $this->EncryptList = $param["EncryptList"];
  94. }
  95. if (array_key_exists("Iv",$param) and $param["Iv"] !== null) {
  96. $this->Iv = $param["Iv"];
  97. }
  98. }
  99. }