1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <?php
- namespace TencentCloud\Faceid\V20180301\Models;
- use TencentCloud\Common\AbstractModel;
- class EidInfo extends AbstractModel
- {
-
- public $EidCode;
-
- public $EidSign;
-
- public $DesKey;
-
- public $UserInfo;
-
- function __construct()
- {
- }
-
- public function deserialize($param)
- {
- if ($param === null) {
- return;
- }
- if (array_key_exists("EidCode",$param) and $param["EidCode"] !== null) {
- $this->EidCode = $param["EidCode"];
- }
- if (array_key_exists("EidSign",$param) and $param["EidSign"] !== null) {
- $this->EidSign = $param["EidSign"];
- }
- if (array_key_exists("DesKey",$param) and $param["DesKey"] !== null) {
- $this->DesKey = $param["DesKey"];
- }
- if (array_key_exists("UserInfo",$param) and $param["UserInfo"] !== null) {
- $this->UserInfo = $param["UserInfo"];
- }
- }
- }
|