EidInfo.php 3.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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. * Eid出参,包括商户方用户的标识和加密的用户姓名身份证信息。
  21. *
  22. * @method string getEidCode() 获取商户方 appeIDcode 的数字证书
  23. * @method void setEidCode(string $EidCode) 设置商户方 appeIDcode 的数字证书
  24. * @method string getEidSign() 获取Eid中心针对商户方EidCode的电子签名
  25. * @method void setEidSign(string $EidSign) 设置Eid中心针对商户方EidCode的电子签名
  26. * @method string getDesKey() 获取商户方公钥加密的会话密钥的base64字符串,[指引详见](https://cloud.tencent.com/document/product/1007/63370)
  27. * @method void setDesKey(string $DesKey) 设置商户方公钥加密的会话密钥的base64字符串,[指引详见](https://cloud.tencent.com/document/product/1007/63370)
  28. * @method string getUserInfo() 获取会话密钥sm2加密后的base64字符串,[指引详见](https://cloud.tencent.com/document/product/1007/63370)
  29. * @method void setUserInfo(string $UserInfo) 设置会话密钥sm2加密后的base64字符串,[指引详见](https://cloud.tencent.com/document/product/1007/63370)
  30. */
  31. class EidInfo extends AbstractModel
  32. {
  33. /**
  34. * @var string 商户方 appeIDcode 的数字证书
  35. */
  36. public $EidCode;
  37. /**
  38. * @var string Eid中心针对商户方EidCode的电子签名
  39. */
  40. public $EidSign;
  41. /**
  42. * @var string 商户方公钥加密的会话密钥的base64字符串,[指引详见](https://cloud.tencent.com/document/product/1007/63370)
  43. */
  44. public $DesKey;
  45. /**
  46. * @var string 会话密钥sm2加密后的base64字符串,[指引详见](https://cloud.tencent.com/document/product/1007/63370)
  47. */
  48. public $UserInfo;
  49. /**
  50. * @param string $EidCode 商户方 appeIDcode 的数字证书
  51. * @param string $EidSign Eid中心针对商户方EidCode的电子签名
  52. * @param string $DesKey 商户方公钥加密的会话密钥的base64字符串,[指引详见](https://cloud.tencent.com/document/product/1007/63370)
  53. * @param string $UserInfo 会话密钥sm2加密后的base64字符串,[指引详见](https://cloud.tencent.com/document/product/1007/63370)
  54. */
  55. function __construct()
  56. {
  57. }
  58. /**
  59. * For internal only. DO NOT USE IT.
  60. */
  61. public function deserialize($param)
  62. {
  63. if ($param === null) {
  64. return;
  65. }
  66. if (array_key_exists("EidCode",$param) and $param["EidCode"] !== null) {
  67. $this->EidCode = $param["EidCode"];
  68. }
  69. if (array_key_exists("EidSign",$param) and $param["EidSign"] !== null) {
  70. $this->EidSign = $param["EidSign"];
  71. }
  72. if (array_key_exists("DesKey",$param) and $param["DesKey"] !== null) {
  73. $this->DesKey = $param["DesKey"];
  74. }
  75. if (array_key_exists("UserInfo",$param) and $param["UserInfo"] !== null) {
  76. $this->UserInfo = $param["UserInfo"];
  77. }
  78. }
  79. }