class Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLinkProposal

A proposal for a link between an GA4 property and a Display & Video 360 advertiser. A proposal is converted to a DisplayVideo360AdvertiserLink once approved. Google Analytics admins approve inbound proposals while Display & Video 360 admins approve outbound proposals.

Attributes

ads_personalization_enabled[RW]

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

ads_personalization_enabled?[RW]

Immutable. Enables personalized advertising features with this integration. If this field is not set on create, 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 Advertiser. Only populated for proposals that originated from Display & Video 360. 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. 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. 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. This can only be enabled if campaign_data_import_enabled is enabled. 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. This can only be enabled if campaign_data_import_enabled is enabled. 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 DisplayVideo360AdvertiserLinkProposal resource. Format: properties/`propertyId`/ displayVideo360AdvertiserLinkProposals/`proposalId` Note: proposalId is not the Display & Video 360 Advertiser ID Corresponds to the JSON property `name` @return [String]

validation_email[RW]

Input only. On a proposal being sent to Display & Video 360, this field must be set to the email address of an admin on the target advertiser. This is used to verify that the Google Analytics admin is aware of at least one admin on the Display & Video 360 Advertiser. This does not restrict approval of the proposal to a single user. Any admin on the Display & Video 360 Advertiser may approve the proposal. Corresponds to the JSON property `validationEmail` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/analyticsadmin_v1alpha/classes.rb, line 1114
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 1119
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)
  @link_proposal_status_details = args[:link_proposal_status_details] if args.key?(:link_proposal_status_details)
  @name = args[:name] if args.key?(:name)
  @validation_email = args[:validation_email] if args.key?(:validation_email)
end