class Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLink

A link between a GA4 property and a Display & Video 360 advertiser.

Attributes

ads_personalization_enabled[RW]

Enables personalized advertising features with this integration. If this field is not set on create/update, it will be defaulted to true. Corresponds to the JSON property `adsPersonalizationEnabled` @return [Boolean]

ads_personalization_enabled?[RW]

Enables personalized advertising features with this integration. If this field is not set on create/update, it will be defaulted to true. Corresponds to the JSON property `adsPersonalizationEnabled` @return [Boolean]

advertiser_display_name[RW]

Output only. The display name of the Display & Video 360 Advertiser. Corresponds to the JSON property `advertiserDisplayName` @return [String]

advertiser_id[RW]

Immutable. The Display & Video 360 Advertiser's advertiser ID. Corresponds to the JSON property `advertiserId` @return [String]

campaign_data_sharing_enabled[RW]

Immutable. Enables the import of campaign data from Display & Video 360 into the GA4 property. After link creation, this can only be updated from the Display & Video 360 product. If this field is not set on create, it will be defaulted to true. Corresponds to the JSON property `campaignDataSharingEnabled` @return [Boolean]

campaign_data_sharing_enabled?[RW]

Immutable. Enables the import of campaign data from Display & Video 360 into the GA4 property. After link creation, this can only be updated from the Display & Video 360 product. If this field is not set on create, it will be defaulted to true. Corresponds to the JSON property `campaignDataSharingEnabled` @return [Boolean]

cost_data_sharing_enabled[RW]

Immutable. Enables the import of cost data from Display & Video 360 into the GA4 property. This can only be enabled if campaign_data_import_enabled is enabled. After link creation, this can only be updated from the Display & Video 360 product. If this field is not set on create, it will be defaulted to true. Corresponds to the JSON property `costDataSharingEnabled` @return [Boolean]

cost_data_sharing_enabled?[RW]

Immutable. Enables the import of cost data from Display & Video 360 into the GA4 property. This can only be enabled if campaign_data_import_enabled is enabled. After link creation, this can only be updated from the Display & Video 360 product. If this field is not set on create, it will be defaulted to true. Corresponds to the JSON property `costDataSharingEnabled` @return [Boolean]

name[RW]

Output only. The resource name for this DisplayVideo360AdvertiserLink resource. Format: properties/`propertyId`/displayVideo360AdvertiserLinks/`linkId` Note: linkId is not the Display & Video 360 Advertiser ID Corresponds to the JSON property `name` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/analyticsadmin_v1alpha/classes.rb, line 1036
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/analyticsadmin_v1alpha/classes.rb, line 1041
def update!(**args)
  @ads_personalization_enabled = args[:ads_personalization_enabled] if args.key?(:ads_personalization_enabled)
  @advertiser_display_name = args[:advertiser_display_name] if args.key?(:advertiser_display_name)
  @advertiser_id = args[:advertiser_id] if args.key?(:advertiser_id)
  @campaign_data_sharing_enabled = args[:campaign_data_sharing_enabled] if args.key?(:campaign_data_sharing_enabled)
  @cost_data_sharing_enabled = args[:cost_data_sharing_enabled] if args.key?(:cost_data_sharing_enabled)
  @name = args[:name] if args.key?(:name)
end