Api\ServiceType\ApiService::ReportSuite_GetRollupDates PHP Method

ReportSuite_GetRollupDates() public method

Method to call the operation originally named ReportSuite.GetRollupDates Meta informations extracted from the WSDL - documentation: Returns rollup dates for the given rollup report suites.
public ReportSuite_GetRollupDates ( string $rsid_list ) : rscollection_rollup_dates | boolean
$rsid_list string
return rscollection_rollup_dates | boolean
    public function ReportSuite_GetRollupDates($rsid_list)
    {
        try {
            $this->setResult(self::getSoapClient()->__call('ReportSuite.GetRollupDates', array($rsid_list)));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService