Api\ServiceType\ApiService::Scheduling_DeleteWorkbook PHP Method

Scheduling_DeleteWorkbook() public method

Method to call the operation originally named Scheduling.DeleteWorkbook Meta informations extracted from the WSDL - documentation: Deletes workbooks from the library. (Internal use only.)
public Scheduling_DeleteWorkbook ( string $location, string $product, string $username, string $workbookNames ) : boolean
$location string
$product string
$username string
$workbookNames string
return boolean
    public function Scheduling_DeleteWorkbook($location, $product, $username, $workbookNames)
    {
        try {
            $this->setResult(self::getSoapClient()->__call('Scheduling.DeleteWorkbook', array($location, $product, $username, $workbookNames)));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService