class Google::Apis::DisplayvideoV1::Advertiser
A single advertiser in Display & Video 360 (DV360).
Attributes
Ad server related settings of an advertiser. Corresponds to the JSON property `adServerConfig` @return [Google::Apis::DisplayvideoV1::AdvertiserAdServerConfig]
Output only. The unique ID of the advertiser. Assigned by the system. Corresponds to the JSON property `advertiserId` @return [Fixnum]
Creatives related settings of an advertiser. Corresponds to the JSON property `creativeConfig` @return [Google::Apis::DisplayvideoV1::AdvertiserCreativeConfig]
Settings that control how advertiser related data may be accessed. Corresponds to the JSON property `dataAccessConfig` @return [Google::Apis::DisplayvideoV1::AdvertiserDataAccessConfig]
Required. The display name of the advertiser. Must be UTF-8 encoded with a maximum size of 240 bytes. Corresponds to the JSON property `displayName` @return [String]
Required. Controls whether or not insertion orders and line items of the advertiser can spend their budgets and bid on inventory. * Accepted values are `ENTITY_STATUS_ACTIVE`, `ENTITY_STATUS_PAUSED` and ` ENTITY_STATUS_SCHEDULED_FOR_DELETION`. * If set to ` ENTITY_STATUS_SCHEDULED_FOR_DELETION`, the advertiser will be deleted 30 days from when it was first scheduled for deletion. Corresponds to the JSON property `entityStatus` @return [String]
General settings of an advertiser. Corresponds to the JSON property `generalConfig` @return [Google::Apis::DisplayvideoV1::AdvertiserGeneralConfig]
Integration details of an entry. Corresponds to the JSON property `integrationDetails` @return [Google::Apis::DisplayvideoV1::IntegrationDetails]
Output only. The resource name of the advertiser. Corresponds to the JSON property `name` @return [String]
Required. Immutable. The unique ID of the partner that the advertiser belongs to. Corresponds to the JSON property `partnerId` @return [Fixnum]
Whether integration with Mediaocean (Prisma) is enabled. By enabling this, you agree to the following: On behalf of my company, I authorize Mediaocean ( Prisma) to send budget segment plans to Google
, and I authorize Google
to send corresponding reporting and invoices from DV360 to Mediaocean for the purposes of budget planning, billing, and reconciliation for this advertiser. Corresponds to the JSON property `prismaEnabled` @return [Boolean]
Whether integration with Mediaocean (Prisma) is enabled. By enabling this, you agree to the following: On behalf of my company, I authorize Mediaocean ( Prisma) to send budget segment plans to Google
, and I authorize Google
to send corresponding reporting and invoices from DV360 to Mediaocean for the purposes of budget planning, billing, and reconciliation for this advertiser. Corresponds to the JSON property `prismaEnabled` @return [Boolean]
Targeting settings related to ad serving of an advertiser. Corresponds to the JSON property `servingConfig` @return [Google::Apis::DisplayvideoV1::AdvertiserTargetingConfig]
Output only. The timestamp when the advertiser was last updated. Assigned by the system. Corresponds to the JSON property `updateTime` @return [String]
Public Class Methods
# File lib/google/apis/displayvideo_v1/classes.rb, line 190 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/displayvideo_v1/classes.rb, line 195 def update!(**args) @ad_server_config = args[:ad_server_config] if args.key?(:ad_server_config) @advertiser_id = args[:advertiser_id] if args.key?(:advertiser_id) @creative_config = args[:creative_config] if args.key?(:creative_config) @data_access_config = args[:data_access_config] if args.key?(:data_access_config) @display_name = args[:display_name] if args.key?(:display_name) @entity_status = args[:entity_status] if args.key?(:entity_status) @general_config = args[:general_config] if args.key?(:general_config) @integration_details = args[:integration_details] if args.key?(:integration_details) @name = args[:name] if args.key?(:name) @partner_id = args[:partner_id] if args.key?(:partner_id) @prisma_enabled = args[:prisma_enabled] if args.key?(:prisma_enabled) @serving_config = args[:serving_config] if args.key?(:serving_config) @update_time = args[:update_time] if args.key?(:update_time) end