Api\ServiceType\ApiService::ReportSuite_GetMobileAppReporting PHP Method

ReportSuite_GetMobileAppReporting() public method

Method to call the operation originally named ReportSuite.GetMobileAppReporting Meta informations extracted from the WSDL - documentation: Retrieves the Mobile Application Tracking settings for the requested report suites.
public ReportSuite_GetMobileAppReporting ( string $rsid_list ) : string | boolean
$rsid_list string
return string | boolean
    public function ReportSuite_GetMobileAppReporting($rsid_list)
    {
        try {
            $this->setResult(self::getSoapClient()->__call('ReportSuite.GetMobileAppReporting', array($rsid_list)));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService