Api\ServiceType\ApiService::Report_GetOvertimeReport PHP Method

Report_GetOvertimeReport() public method

Method to call the operation originally named Report.GetOvertimeReport Meta informations extracted from the WSDL - documentation: Runs an overtime report.
public Report_GetOvertimeReport ( Api\StructType\ApiReportDescription $reportDescription ) : Api\StructType\ApiReportResponse | boolean
$reportDescription Api\StructType\ApiReportDescription
return Api\StructType\ApiReportResponse | boolean
    public function Report_GetOvertimeReport(\Api\StructType\ApiReportDescription $reportDescription)
    {
        try {
            $this->setResult(self::getSoapClient()->__call('Report.GetOvertimeReport', array($reportDescription)));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService