Class: Google::Apis::YoutubeV3::ChannelProfileDetails

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ChannelProfileDetails

Returns a new instance of ChannelProfileDetails.



1411
1412
1413
# File 'generated/google/apis/youtube_v3/classes.rb', line 1411

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

Instance Attribute Details

#channel_idString

The YouTube channel ID. Corresponds to the JSON property channelId

Returns:

  • (String)


1394
1395
1396
# File 'generated/google/apis/youtube_v3/classes.rb', line 1394

def channel_id
  @channel_id
end

#channel_urlString

The channel's URL. Corresponds to the JSON property channelUrl

Returns:

  • (String)


1399
1400
1401
# File 'generated/google/apis/youtube_v3/classes.rb', line 1399

def channel_url
  @channel_url
end

#display_nameString

The channel's display name. Corresponds to the JSON property displayName

Returns:

  • (String)


1404
1405
1406
# File 'generated/google/apis/youtube_v3/classes.rb', line 1404

def display_name
  @display_name
end

#profile_image_urlString

The channels's avatar URL. Corresponds to the JSON property profileImageUrl

Returns:

  • (String)


1409
1410
1411
# File 'generated/google/apis/youtube_v3/classes.rb', line 1409

def profile_image_url
  @profile_image_url
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1416
1417
1418
1419
1420
1421
# File 'generated/google/apis/youtube_v3/classes.rb', line 1416

def update!(**args)
  @channel_id = args[:channel_id] if args.key?(:channel_id)
  @channel_url = args[:channel_url] if args.key?(:channel_url)
  @display_name = args[:display_name] if args.key?(:display_name)
  @profile_image_url = args[:profile_image_url] if args.key?(:profile_image_url)
end