class Google::Apis::DisplayvideoV1::CmHybridConfig
Settings for advertisers that use both Campaign
Manager 360 (CM360) and third- party ad servers.
Attributes
Required. Immutable. Account ID of the CM360 Floodlight configuration linked with the DV360 advertiser. Corresponds to the JSON property `cmAccountId` @return [Fixnum]
Required. Immutable. ID of the CM360 Floodlight configuration linked with the DV360 advertiser. Corresponds to the JSON property `cmFloodlightConfigId` @return [Fixnum]
A list of CM360 sites whose placements will be synced to DV360 as creatives. If absent or empty in CreateAdvertiser method, the system will automatically create a CM360 site. Removing sites from this list may cause DV360 creatives synced from CM360 to be deleted. At least one site must be specified. Corresponds to the JSON property `cmSyncableSiteIds` @return [Array<Fixnum>]
Whether or not to report DV360 cost to CM360. Corresponds to the JSON property `dv360ToCmCostReportingEnabled` @return [Boolean]
Whether or not to report DV360 cost to CM360. Corresponds to the JSON property `dv360ToCmCostReportingEnabled` @return [Boolean]
Whether or not to include DV360 data in CM360 data transfer reports. Corresponds to the JSON property `dv360ToCmDataSharingEnabled` @return [Boolean]
Whether or not to include DV360 data in CM360 data transfer reports. Corresponds to the JSON property `dv360ToCmDataSharingEnabled` @return [Boolean]
Public Class Methods
# File lib/google/apis/displayvideo_v1/classes.rb, line 2547 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/displayvideo_v1/classes.rb, line 2552 def update!(**args) @cm_account_id = args[:cm_account_id] if args.key?(:cm_account_id) @cm_floodlight_config_id = args[:cm_floodlight_config_id] if args.key?(:cm_floodlight_config_id) @cm_floodlight_linking_authorized = args[:cm_floodlight_linking_authorized] if args.key?(:cm_floodlight_linking_authorized) @cm_syncable_site_ids = args[:cm_syncable_site_ids] if args.key?(:cm_syncable_site_ids) @dv360_to_cm_cost_reporting_enabled = args[:dv360_to_cm_cost_reporting_enabled] if args.key?(:dv360_to_cm_cost_reporting_enabled) @dv360_to_cm_data_sharing_enabled = args[:dv360_to_cm_data_sharing_enabled] if args.key?(:dv360_to_cm_data_sharing_enabled) end