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

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

Method to call the operation originally named Logs.GetUsageLog Meta informations extracted from the WSDL - documentation: Retrieve usage log information for the given company.
public Logs_GetUsageLog ( string $date_from, string $date_to, string $event_details, string $event_type, string $ip, string $login, string $report_suite ) : usage_log_entries | boolean
$date_from string
$date_to string
$event_details string
$event_type string
$ip string
$login string
$report_suite string
Результат usage_log_entries | boolean
    public function Logs_GetUsageLog($date_from, $date_to, $event_details, $event_type, $ip, $login, $report_suite)
    {
        try {
            $this->setResult(self::getSoapClient()->__call('Logs.GetUsageLog', array($date_from, $date_to, $event_details, $event_type, $ip, $login, $report_suite)));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService