Api\ServiceType\ApiService::ReportSuite_SaveCustomCalendar PHP Method

ReportSuite_SaveCustomCalendar() public method

Method to call the operation originally named ReportSuite.SaveCustomCalendar Meta informations extracted from the WSDL - documentation: Enables custom calendars for the requested report suites.
public ReportSuite_SaveCustomCalendar ( string $anchor_date, string $cal_type, string $rsid_list ) : integer | boolean
$anchor_date string
$cal_type string
$rsid_list string
return integer | boolean
    public function ReportSuite_SaveCustomCalendar($anchor_date, $cal_type, $rsid_list)
    {
        try {
            $this->setResult(self::getSoapClient()->__call('ReportSuite.SaveCustomCalendar', array($anchor_date, $cal_type, $rsid_list)));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService