ErrorCode = $param["ErrorCode"]; } if (array_key_exists("ErrorMsg",$param) and $param["ErrorMsg"] !== null) { $this->ErrorMsg = $param["ErrorMsg"]; } if (array_key_exists("VideoBestFrameUrl",$param) and $param["VideoBestFrameUrl"] !== null) { $this->VideoBestFrameUrl = $param["VideoBestFrameUrl"]; } if (array_key_exists("VideoBestFrameMd5",$param) and $param["VideoBestFrameMd5"] !== null) { $this->VideoBestFrameMd5 = $param["VideoBestFrameMd5"]; } if (array_key_exists("VerificationDetailList",$param) and $param["VerificationDetailList"] !== null) { $this->VerificationDetailList = []; foreach ($param["VerificationDetailList"] as $key => $value){ $obj = new VerificationDetail(); $obj->deserialize($value); array_push($this->VerificationDetailList, $obj); } } if (array_key_exists("VideoUrl",$param) and $param["VideoUrl"] !== null) { $this->VideoUrl = $param["VideoUrl"]; } if (array_key_exists("VideoMd5",$param) and $param["VideoMd5"] !== null) { $this->VideoMd5 = $param["VideoMd5"]; } if (array_key_exists("RequestId",$param) and $param["RequestId"] !== null) { $this->RequestId = $param["RequestId"]; } } }