Class: Google::Apis::DisplayvideoV3::YoutubeAndPartnersInventorySourceConfig
- Inherits:
-
Object
- Object
- Google::Apis::DisplayvideoV3::YoutubeAndPartnersInventorySourceConfig
- 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
Settings that control what YouTube related inventories the YouTube and Partners line item will target.
Instance Attribute Summary collapse
-
#include_google_tv ⇒ Boolean
(also: #include_google_tv?)
Optional.
-
#include_youtube ⇒ Boolean
(also: #include_youtube?)
Optional.
-
#include_youtube_video_partners ⇒ Boolean
(also: #include_youtube_video_partners?)
Whether to target inventory on a collection of partner sites and apps that follow the same brand safety standards as YouTube.
Instance Method Summary collapse
-
#initialize(**args) ⇒ YoutubeAndPartnersInventorySourceConfig
constructor
A new instance of YoutubeAndPartnersInventorySourceConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ YoutubeAndPartnersInventorySourceConfig
Returns a new instance of YoutubeAndPartnersInventorySourceConfig.
12709 12710 12711 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 12709 def initialize(**args) update!(**args) end |
Instance Attribute Details
#include_google_tv ⇒ Boolean Also known as: include_google_tv?
Optional. Whether to target inventory in video apps available with Google TV.
Corresponds to the JSON property includeGoogleTv
12692 12693 12694 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 12692 def include_google_tv @include_google_tv end |
#include_youtube ⇒ Boolean Also known as: include_youtube?
Optional. Whether to target inventory on YouTube. This includes both search,
channels and videos.
Corresponds to the JSON property includeYoutube
12699 12700 12701 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 12699 def include_youtube @include_youtube end |
#include_youtube_video_partners ⇒ Boolean Also known as: include_youtube_video_partners?
Whether to target inventory on a collection of partner sites and apps that
follow the same brand safety standards as YouTube.
Corresponds to the JSON property includeYoutubeVideoPartners
12706 12707 12708 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 12706 def include_youtube_video_partners @include_youtube_video_partners end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
12714 12715 12716 12717 12718 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 12714 def update!(**args) @include_google_tv = args[:include_google_tv] if args.key?(:include_google_tv) @include_youtube = args[:include_youtube] if args.key?(:include_youtube) @include_youtube_video_partners = args[:include_youtube_video_partners] if args.key?(:include_youtube_video_partners) end |