Caution: You are viewing documentation for the API's REST interface. Most of our official client libraries use gRPC. See the
REST Introduction for details.
CustomerExtensionSettingOperation
A single operation (create, update, remove) on a customer extension setting.
JSON representation |
{
"updateMask": string,
// Union field operation can be only one of the following:
"create": {
object (CustomerExtensionSetting )
},
"update": {
object (CustomerExtensionSetting )
},
"remove": string
// End of list of possible types for union field operation .
} |
Fields |
updateMask |
string (FieldMask format)
FieldMask that determines which resource fields are modified in an update. This is a comma-separated list of fully qualified names of fields. Example: "user.displayName,photo" .
|
Union field operation . The mutate operation. operation can be only one of the following: |
create |
object (CustomerExtensionSetting )
Create operation: No resource name is expected for the new customer extension setting.
|
update |
object (CustomerExtensionSetting )
Update operation: The customer extension setting is expected to have a valid resource name.
|
remove |
string
Remove operation: A resource name for the removed customer extension setting is expected, in this format: customers/{customerId}/customerExtensionSettings/{extensionType}
|
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-03-06 UTC.
[null,null,["Last updated 2025-03-06 UTC."],[[["This page describes the JSON format for performing operations (create, update, remove) on Google Ads customer extension settings."],["The `operation` field specifies the action type and can be `create`, `update`, or `remove`."],["Each operation type requires specific data: `create` needs the new setting object, `update` requires an existing setting object with a valid resource name, and `remove` needs the resource name of the setting to delete."],["You can specify fields to update using the `updateMask` in the format described in [FieldMask](https://protobuf.dev/reference/protobuf/google.protobuf/#field-mask)."]]],[]]