IdCard = $param["IdCard"]; } if (array_key_exists("Name",$param) and $param["Name"] !== null) { $this->Name = $param["Name"]; } if (array_key_exists("Phone",$param) and $param["Phone"] !== null) { $this->Phone = $param["Phone"]; } if (array_key_exists("Encryption",$param) and $param["Encryption"] !== null) { $this->Encryption = new Encryption(); $this->Encryption->deserialize($param["Encryption"]); } } }