Class: Google::Apis::DisplayvideoV1::Advertiser

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/displayvideo_v1/classes.rb,
generated/google/apis/displayvideo_v1/representations.rb,
generated/google/apis/displayvideo_v1/representations.rb

Overview

A single advertiser in Display & Video 360 (DV360).

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Advertiser

Returns a new instance of Advertiser.



179
180
181
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 179

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#ad_server_configGoogle::Apis::DisplayvideoV1::AdvertiserAdServerConfig

Ad server related settings of an advertiser. Corresponds to the JSON property adServerConfig



115
116
117
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 115

def ad_server_config
  @ad_server_config
end

#advertiser_idFixnum

Output only. The unique ID of the advertiser. Assigned by the system. Corresponds to the JSON property advertiserId

Returns:

  • (Fixnum)


120
121
122
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 120

def advertiser_id
  @advertiser_id
end

#creative_configGoogle::Apis::DisplayvideoV1::AdvertiserCreativeConfig

Creatives related settings of an advertiser. Corresponds to the JSON property creativeConfig



125
126
127
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 125

def creative_config
  @creative_config
end

#data_access_configGoogle::Apis::DisplayvideoV1::AdvertiserDataAccessConfig

Settings that control how advertiser related data may be accessed. Corresponds to the JSON property dataAccessConfig



130
131
132
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 130

def data_access_config
  @data_access_config
end

#display_nameString

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

Returns:

  • (String)


136
137
138
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 136

def display_name
  @display_name
end

#entity_statusString

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 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

Returns:

  • (String)


145
146
147
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 145

def entity_status
  @entity_status
end

#general_configGoogle::Apis::DisplayvideoV1::AdvertiserGeneralConfig

General settings of an advertiser. Corresponds to the JSON property generalConfig



150
151
152
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 150

def general_config
  @general_config
end

#integration_detailsGoogle::Apis::DisplayvideoV1::IntegrationDetails

Integration details of an entry. Corresponds to the JSON property integrationDetails



155
156
157
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 155

def integration_details
  @integration_details
end

#nameString

Output only. The resource name of the advertiser. Corresponds to the JSON property name

Returns:

  • (String)


160
161
162
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 160

def name
  @name
end

#partner_idFixnum

Required. Immutable. The unique ID of the partner that the advertiser belongs to. Corresponds to the JSON property partnerId

Returns:

  • (Fixnum)


166
167
168
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 166

def partner_id
  @partner_id
end

#serving_configGoogle::Apis::DisplayvideoV1::AdvertiserTargetingConfig

Targeting settings related to ad serving of an advertiser. Corresponds to the JSON property servingConfig



171
172
173
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 171

def serving_config
  @serving_config
end

#update_timeString

Output only. The timestamp when the advertiser was last updated. Assigned by the system. Corresponds to the JSON property updateTime

Returns:

  • (String)


177
178
179
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 177

def update_time
  @update_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



184
185
186
187
188
189
190
191
192
193
194
195
196
197
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 184

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)
  @serving_config = args[:serving_config] if args.key?(:serving_config)
  @update_time = args[:update_time] if args.key?(:update_time)
end