Api\ServiceType\ApiService::ReportSuite_DeleteMarketingChannelCost PHP Method

ReportSuite_DeleteMarketingChannelCost() public method

Method to call the operation originally named ReportSuite.DeleteMarketingChannelCost Meta informations extracted from the WSDL - documentation: Deletes a cost item for the selected report suites
public ReportSuite_DeleteMarketingChannelCost ( string $channel_type, string $cost_group, string $id, string $rsid_list ) : boolean
$channel_type string
$cost_group string
$id string
$rsid_list string
return boolean
    public function ReportSuite_DeleteMarketingChannelCost($channel_type, $cost_group, $id, $rsid_list)
    {
        try {
            $this->setResult(self::getSoapClient()->__call('ReportSuite.DeleteMarketingChannelCost', array($channel_type, $cost_group, $id, $rsid_list)));
            return $this->getResult();
        } catch (\SoapFault $soapFault) {
            $this->saveLastError(__METHOD__, $soapFault);
            return false;
        }
    }
ApiService