Api\ServiceType\ApiService::CodeManager_DeleteCodeArchive PHP Method

CodeManager_DeleteCodeArchive() public method

Method to call the operation originally named CodeManager.DeleteCodeArchive Meta informations extracted from the WSDL - documentation: Delete page code.
public CodeManager_DeleteCodeArchive ( string $archive_id ) : integer | boolean
$archive_id string
return integer | boolean
    public function CodeManager_DeleteCodeArchive($archive_id)
    {
        try {
            $this->setResult(self::getSoapClient()->__call('CodeManager.DeleteCodeArchive', array($archive_id)));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService