Api\ServiceType\ApiService::Scheduling_GetReportsRunHistory PHP Method

Scheduling_GetReportsRunHistory() public method

Method to call the operation originally named Scheduling.GetReportsRunHistory Meta informations extracted from the WSDL - documentation: Gets a history of reports published by a user.
public Scheduling_GetReportsRunHistory ( string $limit, string $offset, string $product, string $username ) : Api\StructType\ApiScheduleLog[] | boolean
$limit string
$offset string
$product string
$username string
return Api\StructType\ApiScheduleLog[] | boolean
    public function Scheduling_GetReportsRunHistory($limit, $offset, $product, $username)
    {
        try {
            $this->setResult(self::getSoapClient()->__call('Scheduling.GetReportsRunHistory', array($limit, $offset, $product, $username)));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService