Class: Google::Apis::DisplayvideoV1::CreativeConfig

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

Overview

Creative requirements configuration for the inventory source.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ CreativeConfig

Returns a new instance of CreativeConfig.



3402
3403
3404
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 3402

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

Instance Attribute Details

#creative_typeString

The type of creative that can be assigned to the inventory source. Corresponds to the JSON property creativeType

Returns:

  • (String)


3390
3391
3392
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 3390

def creative_type
  @creative_type
end

#display_creative_configGoogle::Apis::DisplayvideoV1::InventorySourceDisplayCreativeConfig

The configuration for display creatives. Corresponds to the JSON property displayCreativeConfig



3395
3396
3397
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 3395

def display_creative_config
  @display_creative_config
end

#video_creative_configGoogle::Apis::DisplayvideoV1::InventorySourceVideoCreativeConfig

The configuration for video creatives. Corresponds to the JSON property videoCreativeConfig



3400
3401
3402
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 3400

def video_creative_config
  @video_creative_config
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3407
3408
3409
3410
3411
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 3407

def update!(**args)
  @creative_type = args[:creative_type] if args.key?(:creative_type)
  @display_creative_config = args[:display_creative_config] if args.key?(:display_creative_config)
  @video_creative_config = args[:video_creative_config] if args.key?(:video_creative_config)
end