Api\ServiceType\ApiService::ReportSuite_GetClassifications PHP Method

ReportSuite_GetClassifications() public method

Method to call the operation originally named ReportSuite.GetClassifications Meta informations extracted from the WSDL - documentation: Retrieves the requested classifications from the requested report suites
public ReportSuite_GetClassifications ( string $c_view, string $rel_id, string $rsid_list, string $type ) : rscollection_classification | boolean
$c_view string
$rel_id string
$rsid_list string
$type string
return rscollection_classification | boolean
    public function ReportSuite_GetClassifications($c_view, $rel_id, $rsid_list, $type)
    {
        try {
            $this->setResult(self::getSoapClient()->__call('ReportSuite.GetClassifications', array($c_view, $rel_id, $rsid_list, $type)));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService