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

إذا كنت بحاجة إلى العمل في أنواع مختلفة من الكيانات في الوقت نفسه أو كنت تفضّل الكتابة عند نقطة نهاية واحدة بدلاً من استخدام نقطة نهاية منفصلة لكل نوع من أنواع الموارد، يمكنك استخدام نقطة نهاية 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])

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