Class: Google::Apis::YoutubeV3::Subscription
- Inherits:
-
Object
- Object
- Google::Apis::YoutubeV3::Subscription
- 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
A subscription resource contains information about a YouTube user subscription. A subscription notifies a user when new videos are added to a channel or when another user takes one of several actions on YouTube, such as uploading a video, rating a video, or commenting on a video.
Instance Attribute Summary collapse
-
#content_details ⇒ Google::Apis::YoutubeV3::SubscriptionContentDetails
Details about the content to witch a subscription refers.
-
#etag ⇒ String
Etag of this resource.
-
#id ⇒ String
The ID that YouTube uses to uniquely identify the subscription.
-
#kind ⇒ String
Identifies what kind of resource this is.
-
#snippet ⇒ Google::Apis::YoutubeV3::SubscriptionSnippet
Basic details about a subscription, including title, description and thumbnails of the subscribed item.
-
#subscriber_snippet ⇒ Google::Apis::YoutubeV3::SubscriptionSubscriberSnippet
Basic details about a subscription's subscriber including title, description, channel ID and thumbnails.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Subscription
constructor
A new instance of Subscription.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Subscription
Returns a new instance of Subscription
6505 6506 6507 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 6505 def initialize(**args) update!(**args) end |
Instance Attribute Details
#content_details ⇒ Google::Apis::YoutubeV3::SubscriptionContentDetails
Details about the content to witch a subscription refers.
Corresponds to the JSON property contentDetails
6475 6476 6477 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 6475 def content_details @content_details end |
#etag ⇒ String
Etag of this resource.
Corresponds to the JSON property etag
6480 6481 6482 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 6480 def etag @etag end |
#id ⇒ String
The ID that YouTube uses to uniquely identify the subscription.
Corresponds to the JSON property id
6485 6486 6487 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 6485 def id @id end |
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "youtube#
subscription".
Corresponds to the JSON property kind
6491 6492 6493 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 6491 def kind @kind end |
#snippet ⇒ Google::Apis::YoutubeV3::SubscriptionSnippet
Basic details about a subscription, including title, description and
thumbnails of the subscribed item.
Corresponds to the JSON property snippet
6497 6498 6499 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 6497 def snippet @snippet end |
#subscriber_snippet ⇒ Google::Apis::YoutubeV3::SubscriptionSubscriberSnippet
Basic details about a subscription's subscriber including title, description,
channel ID and thumbnails.
Corresponds to the JSON property subscriberSnippet
6503 6504 6505 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 6503 def subscriber_snippet @subscriber_snippet end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6510 6511 6512 6513 6514 6515 6516 6517 |
# File 'generated/google/apis/youtube_v3/classes.rb', line 6510 def update!(**args) @content_details = args[:content_details] if args.key?(:content_details) @etag = args[:etag] if args.key?(:etag) @id = args[:id] if args.key?(:id) @kind = args[:kind] if args.key?(:kind) @snippet = args[:snippet] if args.key?(:snippet) @subscriber_snippet = args[:subscriber_snippet] if args.key?(:subscriber_snippet) end |