التبديلات المجمّعة

إذا كنت بحاجة إلى تنفيذ عمليات على أنواع مختلفة من الكيانات في الوقت نفسه أو كنت تفضّل الكتابة إلى نقطة نهاية واحدة بدلاً من استخدام نقطة نهاية منفصلة لكل نوع من أنواع الموارد، يمكنك استخدام نقطة النهاية GoogleAdsService.Mutate لجميع عمليات التعديل المتوافقة.

عمليات التعديل

يقبل كل MutateGoogleAdsRequest MutateOperation متكرّرًا، ويمكن أن يتضمّن كل منهما عملية واحدة لنوع مورد واحد. لإنشاء حملة واحدة ومجموعة إعلانية واحدة في طلب GoogleAdsService.Mutate واحد، عليك إنشاء عنصرَين من MutateOperation (أحدهما CampaignOperation والآخر AdGroupOperation)، ثم تمرير كليهما إلى GoogleAdsService.

Ruby

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_operation
mutate_operation2.ad_group_operation = ad_group_operation

google_ads_service.mutate(customer_id, [mutate_operation1, mutate_operation2])

وكما هو الحال مع الخدمات الأخرى، تتيح نقطة النهاية هذه الفشل الجزئي ووضع التحقّق فقط.