Api\ServiceType\ApiService::ReportSuite_SaveRollup PHP Method

ReportSuite_SaveRollup() public method

Method to call the operation originally named ReportSuite.SaveRollup Meta informations extracted from the WSDL - documentation: Saves a rollup for the company.
public ReportSuite_SaveRollup ( string $go_live_date, string $rollup_rsids, string $rsid, string $time_zone ) : integer | boolean
$go_live_date string
$rollup_rsids string
$rsid string
$time_zone string
return integer | boolean
    public function ReportSuite_SaveRollup($go_live_date, $rollup_rsids, $rsid, $time_zone)
    {
        try {
            $this->setResult(self::getSoapClient()->__call('ReportSuite.SaveRollup', array($go_live_date, $rollup_rsids, $rsid, $time_zone)));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService