Class: Google::Apis::YoutubeV3::Thumbnail

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

Overview

A thumbnail is an image representing a YouTube resource.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Thumbnail

Returns a new instance of Thumbnail.



6670
6671
6672
# File 'generated/google/apis/youtube_v3/classes.rb', line 6670

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

Instance Attribute Details

#heightFixnum

(Optional) Height of the thumbnail image. Corresponds to the JSON property height

Returns:

  • (Fixnum)


6658
6659
6660
# File 'generated/google/apis/youtube_v3/classes.rb', line 6658

def height
  @height
end

#urlString

The thumbnail image's URL. Corresponds to the JSON property url

Returns:

  • (String)


6663
6664
6665
# File 'generated/google/apis/youtube_v3/classes.rb', line 6663

def url
  @url
end

#widthFixnum

(Optional) Width of the thumbnail image. Corresponds to the JSON property width

Returns:

  • (Fixnum)


6668
6669
6670
# File 'generated/google/apis/youtube_v3/classes.rb', line 6668

def width
  @width
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6675
6676
6677
6678
6679
# File 'generated/google/apis/youtube_v3/classes.rb', line 6675

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