Оптимизируйте свои подборки
Сохраняйте и классифицируйте контент в соответствии со своими настройками.
Если вам нужно работать с разными типами объектов одновременно или вы предпочитаете писать для одной конечной точки, а не использовать отдельную конечную точку для каждого типа ресурса, вы можете использовать конечную точку GoogleAdsService.Mutate для всех поддерживаемых операций изменения.
mutate_operation1=client.operation(:Mutate)mutate_operation2=client.operation(:Mutate)campaign_operation=client.operation(:Campaign)ad_group_operation=client.operation(:AdGroup)# Do some setup here to get campaign_operation and ad_group_operation into the# state you would want them for a regular mutate call to their respective# services.mutate_operation1.campaign_operation=campaign_operationmutate_operation2.ad_group_operation=ad_group_operationgoogle_ads_service.mutate(customer_id,[mutate_operation1,mutate_operation2])
Как и другие службы, эта конечная точка поддерживает частичный сбой и только проверку.
[[["Прост для понимания","easyToUnderstand","thumb-up"],["Помог мне решить мою проблему","solvedMyProblem","thumb-up"],["Другое","otherUp","thumb-up"]],[["Отсутствует нужная мне информация","missingTheInformationINeed","thumb-down"],["Слишком сложен/слишком много шагов","tooComplicatedTooManySteps","thumb-down"],["Устарел","outOfDate","thumb-down"],["Проблема с переводом текста","translationIssue","thumb-down"],["Проблемы образцов/кода","samplesCodeIssue","thumb-down"],["Другое","otherDown","thumb-down"]],["Последнее обновление: 2024-11-12 UTC."],[[["Use the `GoogleAdsService.Mutate` endpoint to operate on different entity types or prefer a single endpoint."],["The `MutateGoogleAdsRequest` accepts multiple `MutateOperation` entities, each handling a single operation for one resource type."],["Construct separate `MutateOperation` objects for each desired operation, like creating a campaign and an ad group, and pass them to `GoogleAdsService`."],["This endpoint supports partial failure handling and validate-only requests, similar to other Google Ads API services."]]],[]]