Class: Google::Apis::YoutubeV3::ChannelBannerResource

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

A channel banner returned as the response to a channel_banner.insert call.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ChannelBannerResource

Returns a new instance of ChannelBannerResource.



1121
1122
1123
# File 'lib/google/apis/youtube_v3/classes.rb', line 1121

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

Instance Attribute Details

#etagString

Corresponds to the JSON property etag

Returns:

  • (String)


1108
1109
1110
# File 'lib/google/apis/youtube_v3/classes.rb', line 1108

def etag
  @etag
end

#kindString

Identifies what kind of resource this is. Value: the fixed string "youtube# channelBannerResource". Corresponds to the JSON property kind

Returns:

  • (String)


1114
1115
1116
# File 'lib/google/apis/youtube_v3/classes.rb', line 1114

def kind
  @kind
end

#urlString

The URL of this banner image. Corresponds to the JSON property url

Returns:

  • (String)


1119
1120
1121
# File 'lib/google/apis/youtube_v3/classes.rb', line 1119

def url
  @url
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1126
1127
1128
1129
1130
# File 'lib/google/apis/youtube_v3/classes.rb', line 1126

def update!(**args)
  @etag = args[:etag] if args.key?(:etag)
  @kind = args[:kind] if args.key?(:kind)
  @url = args[:url] if args.key?(:url)
end