Api\ServiceType\ApiService::Company_GetReportSuites PHP Method

Company_GetReportSuites() public method

Method to call the operation originally named Company.GetReportSuites Meta informations extracted from the WSDL - documentation: Retrieves all report suites associated with your company.
public Company_GetReportSuites ( string $rs_types, string $sp ) : Api\StructType\ApiSimple_report_suites_rval | boolean
$rs_types string
$sp string
return Api\StructType\ApiSimple_report_suites_rval | boolean
    public function Company_GetReportSuites($rs_types, $sp)
    {
        try {
            $this->setResult(self::getSoapClient()->__call('Company.GetReportSuites', array($rs_types, $sp)));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService