Api\ServiceType\ApiService::Scheduling_ReRunReport PHP Метод

Scheduling_ReRunReport() публичный метод

Method to call the operation originally named Scheduling.ReRunReport Meta informations extracted from the WSDL - documentation: Re-enables a failed report. (Internal use only.)
public Scheduling_ReRunReport ( string $id ) : boolean
$id string
Результат boolean
    public function Scheduling_ReRunReport($id)
    {
        try {
            $this->setResult(self::getSoapClient()->__call('Scheduling.ReRunReport', array($id)));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService