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

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

Method to call the operation originally named Permissions.DeleteLogin Meta informations extracted from the WSDL - documentation: Removes a user login from the company.
public Permissions_DeleteLogin ( string $login ) : integer | boolean
$login string
Результат integer | boolean
    public function Permissions_DeleteLogin($login)
    {
        try {
            $this->setResult(self::getSoapClient()->__call('Permissions.DeleteLogin', array($login)));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService