Api\ServiceType\ApiService::Report_GetElementNames PHP Method

Report_GetElementNames() public method

Method to call the operation originally named Report.GetElementNames Meta informations extracted from the WSDL - documentation: Retrieve element names
public Report_GetElementNames ( Api\StructType\ApiReportDescription $reportDescription ) : report_element_mappings | boolean
$reportDescription Api\StructType\ApiReportDescription
return report_element_mappings | boolean
    public function Report_GetElementNames(\Api\StructType\ApiReportDescription $reportDescription)
    {
        try {
            $this->setResult(self::getSoapClient()->__call('Report.GetElementNames', array($reportDescription)));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService