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

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

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