class Google::Apis::SlidesV1::Thumbnail

The thumbnail of a page.

Attributes

content_url[RW]

The content URL of the thumbnail image. The URL to the image has a default lifetime of 30 minutes. This URL is tagged with the account of the requester. Anyone with the URL effectively accesses the image as the original requester. Access to the image may be lost if the presentation's sharing settings change. The mime type of the thumbnail image is the same as specified in the ` GetPageThumbnailRequest`. Corresponds to the JSON property `contentUrl` @return [String]

height[RW]

The positive height in pixels of the thumbnail image. Corresponds to the JSON property `height` @return [Fixnum]

width[RW]

The positive width in pixels of the thumbnail image. Corresponds to the JSON property `width` @return [Fixnum]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/slides_v1/classes.rb, line 4332
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/slides_v1/classes.rb, line 4337
def update!(**args)
  @content_url = args[:content_url] if args.key?(:content_url)
  @height = args[:height] if args.key?(:height)
  @width = args[:width] if args.key?(:width)
end