Api\ServiceType\ApiAuthenticate::AuthenticateAccount PHP Method

AuthenticateAccount() public method

Method to call the operation originally named AuthenticateAccount
public AuthenticateAccount ( AuthenticateAccount $authenticateAccount ) : AuthenticateAccountResponse | boolean
$authenticateAccount AuthenticateAccount
return 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;
        }
    }