ReportService::getReportDownloadUrlWithOptions PHP 메소드

getReportDownloadUrlWithOptions() 공개 메소드

By default, the report will be generated as a gzip archive, containing the report file itself. This can be changed by setting {@link ReportDownloadOptions#useGzipCompression} to false.

public getReportDownloadUrlWithOptions ( $reportJobId, $reportDownloadOptions ) : the
리턴 the URL for report file download
        public function getReportDownloadUrlWithOptions($reportJobId, $reportDownloadOptions)
        {
            $args = new GetReportDownloadUrlWithOptions($reportJobId, $reportDownloadOptions);
            $result = $this->__soapCall("getReportDownloadUrlWithOptions", array($args));
            return $result->rval;
        }