Class: Google::Apis::YoutubeV3::SubscriptionSubscriberSnippet

Inherits:
Object
  • Object
show all
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

Basic details about a subscription's subscriber including title, description, channel ID and thumbnails.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SubscriptionSubscriberSnippet

Returns a new instance of SubscriptionSubscriberSnippet.



7424
7425
7426
# File 'lib/google/apis/youtube_v3/classes.rb', line 7424

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#channel_idString

The channel ID of the subscriber. Corresponds to the JSON property channelId

Returns:

  • (String)


7407
7408
7409
# File 'lib/google/apis/youtube_v3/classes.rb', line 7407

def channel_id
  @channel_id
end

#descriptionString

The description of the subscriber. Corresponds to the JSON property description

Returns:

  • (String)


7412
7413
7414
# File 'lib/google/apis/youtube_v3/classes.rb', line 7412

def description
  @description
end

#thumbnailsGoogle::Apis::YoutubeV3::ThumbnailDetails

Internal representation of thumbnails for a YouTube resource. Corresponds to the JSON property thumbnails



7417
7418
7419
# File 'lib/google/apis/youtube_v3/classes.rb', line 7417

def thumbnails
  @thumbnails
end

#titleString

The title of the subscriber. Corresponds to the JSON property title

Returns:

  • (String)


7422
7423
7424
# File 'lib/google/apis/youtube_v3/classes.rb', line 7422

def title
  @title
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7429
7430
7431
7432
7433
7434
# File 'lib/google/apis/youtube_v3/classes.rb', line 7429

def update!(**args)
  @channel_id = args[:channel_id] if args.key?(:channel_id)
  @description = args[:description] if args.key?(:description)
  @thumbnails = args[:thumbnails] if args.key?(:thumbnails)
  @title = args[:title] if args.key?(:title)
end