Api\ServiceType\ApiService::ReportSuite_GetAvailableElements PHP Method

ReportSuite_GetAvailableElements() public method

Method to call the operation originally named ReportSuite.GetAvailableElements Meta informations extracted from the WSDL - documentation: Returns available elements for a given report suite.
public ReportSuite_GetAvailableElements ( string $return_datawarehouse_elements, string $rsid_list ) : rscollection_elements | boolean
$return_datawarehouse_elements string
$rsid_list string
return rscollection_elements | boolean
    public function ReportSuite_GetAvailableElements($return_datawarehouse_elements, $rsid_list)
    {
        try {
            $this->setResult(self::getSoapClient()->__call('ReportSuite.GetAvailableElements', array($return_datawarehouse_elements, $rsid_list)));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService