AdGroupExtensionSettingService::mutate PHP Метод

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

Applies the list of mutate operations (add, remove, and set).

Beginning in v201509, add and set operations are treated identically. Performing an add operation on an ad group with an existing ExtensionSetting will cause the operation to be treated like a set operation. Performing a set operation on an ad group with no ExtensionSetting will cause the operation to be treated like an add operation.

public mutate ( $operations ) : The
Результат The changed {@link AdGroupExtensionSetting}s.
        public function mutate($operations)
        {
            $args = new AdGroupExtensionSettingServiceMutate($operations);
            $result = $this->__soapCall("mutate", array($args));
            return $result->rval;
        }
AdGroupExtensionSettingService