ServiceType\Get::GetEventsLog PHP Method

GetEventsLog() public method

Method to call the operation originally named GetEventsLog
public GetEventsLog ( StructType\GetEventsLogRequest $params ) : StructType\EventsLogItem[] | boolean
$params StructType\GetEventsLogRequest
return StructType\EventsLogItem[] | boolean
    public function GetEventsLog(\StructType\GetEventsLogRequest $params)
    {
        try {
            $this->setResult(self::getSoapClient()->GetEventsLog($params));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }