Api\ServiceType\ApiAuthenticate::AuthenticateAccount PHP Метод

AuthenticateAccount() публичный Метод

Method to call the operation originally named AuthenticateAccount
public AuthenticateAccount ( AuthenticateAccount $authenticateAccount ) : AuthenticateAccountResponse | boolean
$authenticateAccount AuthenticateAccount
Результат AuthenticateAccountResponse | boolean
    public function AuthenticateAccount($authenticateAccount)
    {
        try {
            $this->setResult(self::getSoapClient()->AuthenticateAccount($authenticateAccount));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }