Api\ServiceType\ApiService::ReportSuite_SaveScheduledSpike PHP Method

ReportSuite_SaveScheduledSpike() public method

Method to call the operation originally named ReportSuite.SaveScheduledSpike Meta informations extracted from the WSDL - documentation: Saves scheduled traffic spikes for the requested report suites.
public ReportSuite_SaveScheduledSpike ( string $end_date, string $rsid_list, string $spike_hits_per_day, string $start_date ) : integer | boolean
$end_date string
$rsid_list string
$spike_hits_per_day string
$start_date string
return integer | boolean
    public function ReportSuite_SaveScheduledSpike($end_date, $rsid_list, $spike_hits_per_day, $start_date)
    {
        try {
            $this->setResult(self::getSoapClient()->__call('ReportSuite.SaveScheduledSpike', array($end_date, $rsid_list, $spike_hits_per_day, $start_date)));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService