CampaignService::mutate PHP Méthode

mutate() public méthode

Adds, updates, or removes campaigns.

Note: {@link CampaignOperation} does not support the REMOVE operator. To remove a campaign, set its {@link Campaign#status status} to {@code REMOVED}.

public mutate ( $operations ) : The
Résultat The list of updated campaigns, returned in the same order as the operations array.
        public function mutate($operations)
        {
            $args = new CampaignServiceMutate($operations);
            $result = $this->__soapCall("mutate", array($args));
            return $result->rval;
        }