Class: Google::Apis::YoutubeV3::GuideCategorySnippet
- Inherits:
-
Object
- Object
- Google::Apis::YoutubeV3::GuideCategorySnippet
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/youtube_v3/classes.rb,
generated/google/apis/youtube_v3/representations.rb,
generated/google/apis/youtube_v3/representations.rb
Overview
Basic details about a guide category.
Instance Attribute Summary collapse
-
#channel_id ⇒ String
Corresponds to the JSON property
channelId
. -
#title ⇒ String
Description of the guide category.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GuideCategorySnippet
constructor
A new instance of GuideCategorySnippet.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GuideCategorySnippet
Returns a new instance of GuideCategorySnippet
2904 2905 2906 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 2904 def initialize(**args) update!(**args) end |
Instance Attribute Details
#channel_id ⇒ String
Corresponds to the JSON property channelId
2897 2898 2899 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 2897 def channel_id @channel_id end |
#title ⇒ String
Description of the guide category.
Corresponds to the JSON property title
2902 2903 2904 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 2902 def title @title end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2909 2910 2911 2912 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 2909 def update!(**args) @channel_id = args[:channel_id] if args.key?(:channel_id) @title = args[:title] if args.key?(:title) end |