Class: Google::Apis::YoutubeV3::SubscriptionSnippet
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::YoutubeV3::SubscriptionSnippet
 
- 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 subscription, including title, description and thumbnails of the subscribed item.
Instance Attribute Summary collapse
- 
  
    
      #channel_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The ID that YouTube uses to uniquely identify the subscriber's channel. 
- 
  
    
      #channel_title  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Channel title for the channel that the subscription belongs to. 
- 
  
    
      #description  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The subscription's details. 
- 
  
    
      #published_at  ⇒ DateTime 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The date and time that the subscription was created. 
- 
  
    
      #resource_id  ⇒ Google::Apis::YoutubeV3::ResourceId 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A resource id is a generic reference that points to another YouTube resource. 
- 
  
    
      #thumbnails  ⇒ Google::Apis::YoutubeV3::ThumbnailDetails 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Internal representation of thumbnails for a YouTube resource. 
- 
  
    
      #title  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The subscription's title. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ SubscriptionSnippet 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of SubscriptionSnippet. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ SubscriptionSnippet
Returns a new instance of SubscriptionSnippet
| 6495 6496 6497 | # File 'generated/google/apis/youtube_v3/classes.rb', line 6495 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#channel_id ⇒ String
The ID that YouTube uses to uniquely identify the subscriber's channel.
Corresponds to the JSON property channelId
| 6462 6463 6464 | # File 'generated/google/apis/youtube_v3/classes.rb', line 6462 def channel_id @channel_id end | 
#channel_title ⇒ String
Channel title for the channel that the subscription belongs to.
Corresponds to the JSON property channelTitle
| 6467 6468 6469 | # File 'generated/google/apis/youtube_v3/classes.rb', line 6467 def channel_title @channel_title end | 
#description ⇒ String
The subscription's details.
Corresponds to the JSON property description
| 6472 6473 6474 | # File 'generated/google/apis/youtube_v3/classes.rb', line 6472 def description @description end | 
#published_at ⇒ DateTime
The date and time that the subscription was created. The value is specified in
ISO 8601 (YYYY-MM-DDThh:mm:ss.sZ) format.
Corresponds to the JSON property publishedAt
| 6478 6479 6480 | # File 'generated/google/apis/youtube_v3/classes.rb', line 6478 def published_at @published_at end | 
#resource_id ⇒ Google::Apis::YoutubeV3::ResourceId
A resource id is a generic reference that points to another YouTube resource.
Corresponds to the JSON property resourceId
| 6483 6484 6485 | # File 'generated/google/apis/youtube_v3/classes.rb', line 6483 def resource_id @resource_id end | 
#thumbnails ⇒ Google::Apis::YoutubeV3::ThumbnailDetails
Internal representation of thumbnails for a YouTube resource.
Corresponds to the JSON property thumbnails
| 6488 6489 6490 | # File 'generated/google/apis/youtube_v3/classes.rb', line 6488 def thumbnails @thumbnails end | 
#title ⇒ String
The subscription's title.
Corresponds to the JSON property title
| 6493 6494 6495 | # File 'generated/google/apis/youtube_v3/classes.rb', line 6493 def title @title end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 6500 6501 6502 6503 6504 6505 6506 6507 6508 | # File 'generated/google/apis/youtube_v3/classes.rb', line 6500 def update!(**args) @channel_id = args[:channel_id] if args.key?(:channel_id) @channel_title = args[:channel_title] if args.key?(:channel_title) @description = args[:description] if args.key?(:description) @published_at = args[:published_at] if args.key?(:published_at) @resource_id = args[:resource_id] if args.key?(:resource_id) @thumbnails = args[:thumbnails] if args.key?(:thumbnails) @title = args[:title] if args.key?(:title) end |