Class: Google::Apis::YoutubeV3::ChannelSectionTargeting
- Inherits:
-
Object
- Object
- Google::Apis::YoutubeV3::ChannelSectionTargeting
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/youtube_v3/classes.rb,
lib/google/apis/youtube_v3/representations.rb,
lib/google/apis/youtube_v3/representations.rb
Overview
ChannelSection targeting setting.
Instance Attribute Summary collapse
-
#countries ⇒ Array<String>
The country the channel section is targeting.
-
#languages ⇒ Array<String>
The language the channel section is targeting.
-
#regions ⇒ Array<String>
The region the channel section is targeting.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ChannelSectionTargeting
constructor
A new instance of ChannelSectionTargeting.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ChannelSectionTargeting
Returns a new instance of ChannelSectionTargeting.
1675 1676 1677 |
# File 'lib/google/apis/youtube_v3/classes.rb', line 1675 def initialize(**args) update!(**args) end |
Instance Attribute Details
#countries ⇒ Array<String>
The country the channel section is targeting.
Corresponds to the JSON property countries
1663 1664 1665 |
# File 'lib/google/apis/youtube_v3/classes.rb', line 1663 def countries @countries end |
#languages ⇒ Array<String>
The language the channel section is targeting.
Corresponds to the JSON property languages
1668 1669 1670 |
# File 'lib/google/apis/youtube_v3/classes.rb', line 1668 def languages @languages end |
#regions ⇒ Array<String>
The region the channel section is targeting.
Corresponds to the JSON property regions
1673 1674 1675 |
# File 'lib/google/apis/youtube_v3/classes.rb', line 1673 def regions @regions end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1680 1681 1682 1683 1684 |
# File 'lib/google/apis/youtube_v3/classes.rb', line 1680 def update!(**args) @countries = args[:countries] if args.key?(:countries) @languages = args[:languages] if args.key?(:languages) @regions = args[:regions] if args.key?(:regions) end |