Class: Google::Apis::DisplayvideoV3::CreativeConfig
- Inherits:
-
Object
- Object
- Google::Apis::DisplayvideoV3::CreativeConfig
- 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
Creative requirements configuration for the inventory source.
Instance Attribute Summary collapse
-
#creative_type ⇒ String
The type of creative that can be assigned to the inventory source.
-
#display_creative_config ⇒ Google::Apis::DisplayvideoV3::InventorySourceDisplayCreativeConfig
The configuration for display creatives.
-
#video_creative_config ⇒ Google::Apis::DisplayvideoV3::InventorySourceVideoCreativeConfig
The configuration for video creatives.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CreativeConfig
constructor
A new instance of CreativeConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CreativeConfig
Returns a new instance of CreativeConfig.
4682 4683 4684 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 4682 def initialize(**args) update!(**args) end |
Instance Attribute Details
#creative_type ⇒ String
The type of creative that can be assigned to the inventory source. Only the
following types are supported: * CREATIVE_TYPE_STANDARD
*
CREATIVE_TYPE_VIDEO
Corresponds to the JSON property creativeType
4670 4671 4672 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 4670 def creative_type @creative_type end |
#display_creative_config ⇒ Google::Apis::DisplayvideoV3::InventorySourceDisplayCreativeConfig
The configuration for display creatives.
Corresponds to the JSON property displayCreativeConfig
4675 4676 4677 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 4675 def display_creative_config @display_creative_config end |
#video_creative_config ⇒ Google::Apis::DisplayvideoV3::InventorySourceVideoCreativeConfig
The configuration for video creatives.
Corresponds to the JSON property videoCreativeConfig
4680 4681 4682 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 4680 def video_creative_config @video_creative_config end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4687 4688 4689 4690 4691 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 4687 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 |