Api\ServiceType\ApiService::ReportSuite_SaveMarketingChannelRules PHP Method

ReportSuite_SaveMarketingChannelRules() public method

Method to call the operation originally named ReportSuite.SaveMarketingChannelRules Meta informations extracted from the WSDL - documentation: Saves the marketing channel rules for the requested report suites.
public ReportSuite_SaveMarketingChannelRules ( string $mchannel_rules, string $rsid_list ) : integer | boolean
$mchannel_rules string
$rsid_list string
return integer | boolean
    public function ReportSuite_SaveMarketingChannelRules($mchannel_rules, $rsid_list)
    {
        try {
            $this->setResult(self::getSoapClient()->__call('ReportSuite.SaveMarketingChannelRules', array($mchannel_rules, $rsid_list)));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService