ConversionTrackerService::mutate PHP Метод

mutate() публичный Метод

Applies the list of mutate operations such as adding or updating conversion trackers.

Note: {@link ConversionTrackerOperation} does not support the REMOVE operator. In order to 'disable' a conversion type, send a SET operation for the conversion tracker with the status property set to DISABLED

You can mutate any ConversionTracker that belongs to your account. You may not mutate a ConversionTracker that belongs to some other account. You may not directly mutate a system-defined ConversionTracker, but you can create a mutable copy of it in your account by sending a mutate request with an ADD operation specifying an originalConversionTypeId matching a system-defined conversion tracker's ID. That new ADDed ConversionTracker will inherit the statistics and properties of the system-defined type, but will be editable as usual.

public mutate ( $operations ) : The
Результат The list of the conversion trackers as they appear after mutation, in the same order as they appeared in the list of operations.
        public function mutate($operations)
        {
            $args = new ConversionTrackerServiceMutate($operations);
            $result = $this->__soapCall("mutate", array($args));
            return $result->rval;
        }
ConversionTrackerService