Result = $param["Result"]; } if (array_key_exists("Description",$param) and $param["Description"] !== null) { $this->Description = $param["Description"]; } if (array_key_exists("BestFrame",$param) and $param["BestFrame"] !== null) { $this->BestFrame = new FileInfo(); $this->BestFrame->deserialize($param["BestFrame"]); } if (array_key_exists("Video",$param) and $param["Video"] !== null) { $this->Video = new FileInfo(); $this->Video->deserialize($param["Video"]); } if (array_key_exists("RequestId",$param) and $param["RequestId"] !== null) { $this->RequestId = $param["RequestId"]; } } }