Class: Google::Apis::DisplayvideoV3::AdGroupAd

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

Overview

A single ad associated with an ad group.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AdGroupAd

Returns a new instance of AdGroupAd.



233
234
235
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 233

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

Instance Attribute Details

#ad_group_ad_idFixnum

The unique ID of the ad. Assigned by the system. Corresponds to the JSON property adGroupAdId

Returns:

  • (Fixnum)


160
161
162
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 160

def ad_group_ad_id
  @ad_group_ad_id
end

#ad_group_idFixnum

The unique ID of the ad group that the ad belongs to. Corresponds to the JSON property adGroupId

Returns:

  • (Fixnum)


165
166
167
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 165

def ad_group_id
  @ad_group_id
end

#ad_urlsArray<Google::Apis::DisplayvideoV3::AdUrl>

List of URLs used by the ad. Corresponds to the JSON property adUrls



170
171
172
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 170

def ad_urls
  @ad_urls
end

#advertiser_idFixnum

The unique ID of the advertiser the ad belongs to. Corresponds to the JSON property advertiserId

Returns:

  • (Fixnum)


175
176
177
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 175

def advertiser_id
  @advertiser_id
end

#audio_adGoogle::Apis::DisplayvideoV3::AudioAd

Details for an audio ad. Corresponds to the JSON property audioAd



180
181
182
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 180

def audio_ad
  @audio_ad
end

#bumper_adGoogle::Apis::DisplayvideoV3::BumperAd

Details for a bumper ad. Corresponds to the JSON property bumperAd



185
186
187
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 185

def bumper_ad
  @bumper_ad
end

#display_nameString

The display name of the ad. Must be UTF-8 encoded with a maximum size of 255 bytes. Corresponds to the JSON property displayName

Returns:

  • (String)


191
192
193
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 191

def display_name
  @display_name
end

#display_video_source_adGoogle::Apis::DisplayvideoV3::DisplayVideoSourceAd

The ad sourced from a DV360 creative. Corresponds to the JSON property displayVideoSourceAd



196
197
198
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 196

def display_video_source_ad
  @display_video_source_ad
end

#entity_statusString

The entity status of the ad. Corresponds to the JSON property entityStatus

Returns:

  • (String)


201
202
203
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 201

def entity_status
  @entity_status
end

#in_stream_adGoogle::Apis::DisplayvideoV3::InStreamAd

Details for an in-stream ad. Corresponds to the JSON property inStreamAd



206
207
208
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 206

def in_stream_ad
  @in_stream_ad
end

#masthead_adGoogle::Apis::DisplayvideoV3::MastheadAd

Details for a Masthead Ad. Corresponds to the JSON property mastheadAd



211
212
213
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 211

def masthead_ad
  @masthead_ad
end

#nameString

The resource name of the ad. Corresponds to the JSON property name

Returns:

  • (String)


216
217
218
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 216

def name
  @name
end

#non_skippable_adGoogle::Apis::DisplayvideoV3::NonSkippableAd

Details for a non-skippable ad. Corresponds to the JSON property nonSkippableAd



221
222
223
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 221

def non_skippable_ad
  @non_skippable_ad
end

#video_discover_adGoogle::Apis::DisplayvideoV3::VideoDiscoveryAd

Details for a video discovery ad. Corresponds to the JSON property videoDiscoverAd



226
227
228
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 226

def video_discover_ad
  @video_discover_ad
end

#video_performance_adGoogle::Apis::DisplayvideoV3::VideoPerformanceAd

Details for a video performance ad. Corresponds to the JSON property videoPerformanceAd



231
232
233
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 231

def video_performance_ad
  @video_performance_ad
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 238

def update!(**args)
  @ad_group_ad_id = args[:ad_group_ad_id] if args.key?(:ad_group_ad_id)
  @ad_group_id = args[:ad_group_id] if args.key?(:ad_group_id)
  @ad_urls = args[:ad_urls] if args.key?(:ad_urls)
  @advertiser_id = args[:advertiser_id] if args.key?(:advertiser_id)
  @audio_ad = args[:audio_ad] if args.key?(:audio_ad)
  @bumper_ad = args[:bumper_ad] if args.key?(:bumper_ad)
  @display_name = args[:display_name] if args.key?(:display_name)
  @display_video_source_ad = args[:display_video_source_ad] if args.key?(:display_video_source_ad)
  @entity_status = args[:entity_status] if args.key?(:entity_status)
  @in_stream_ad = args[:in_stream_ad] if args.key?(:in_stream_ad)
  @masthead_ad = args[:masthead_ad] if args.key?(:masthead_ad)
  @name = args[:name] if args.key?(:name)
  @non_skippable_ad = args[:non_skippable_ad] if args.key?(:non_skippable_ad)
  @video_discover_ad = args[:video_discover_ad] if args.key?(:video_discover_ad)
  @video_performance_ad = args[:video_performance_ad] if args.key?(:video_performance_ad)
end