class Google::Apis::SlidesV1::Link

A hypertext link.

Attributes

page_object_id[RW]

If set, indicates this is a link to the specific page in this presentation with this ID. A page with this ID may not exist. Corresponds to the JSON property `pageObjectId` @return [String]

slide_index[RW]

If set, indicates this is a link to the slide at this zero-based index in the presentation. There may not be a slide at this index. Corresponds to the JSON property `slideIndex` @return [Fixnum]

url[RW]

If set, indicates this is a link to the external web page at this URL. Corresponds to the JSON property `url` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/slides_v1/classes.rb, line 1720
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 1725
def update!(**args)
  @page_object_id = args[:page_object_id] if args.key?(:page_object_id)
  @relative_link = args[:relative_link] if args.key?(:relative_link)
  @slide_index = args[:slide_index] if args.key?(:slide_index)
  @url = args[:url] if args.key?(:url)
end