Class: Google::Apis::SlidesV1::Link

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/slides_v1/classes.rb,
generated/google/apis/slides_v1/representations.rb,
generated/google/apis/slides_v1/representations.rb

Overview

A hypertext link.

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) ⇒ Link

Returns a new instance of Link



3332
3333
3334
# File 'generated/google/apis/slides_v1/classes.rb', line 3332

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

Instance Attribute Details

#page_object_idString

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

Returns:

  • (String)


3313
3314
3315
# File 'generated/google/apis/slides_v1/classes.rb', line 3313

def page_object_id
  @page_object_id
end

If set, indicates this is a link to a slide in this presentation, addressed by its position. Corresponds to the JSON property relativeLink

Returns:

  • (String)


3324
3325
3326
# File 'generated/google/apis/slides_v1/classes.rb', line 3324

def relative_link
  @relative_link
end

#slide_indexFixnum

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

Returns:

  • (Fixnum)


3330
3331
3332
# File 'generated/google/apis/slides_v1/classes.rb', line 3330

def slide_index
  @slide_index
end

#urlString

If set, indicates this is a link to the external web page at this URL. Corresponds to the JSON property url

Returns:

  • (String)


3318
3319
3320
# File 'generated/google/apis/slides_v1/classes.rb', line 3318

def url
  @url
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3337
3338
3339
3340
3341
3342
# File 'generated/google/apis/slides_v1/classes.rb', line 3337

def update!(**args)
  @page_object_id = args[:page_object_id] if args.key?(:page_object_id)
  @url = args[:url] if args.key?(:url)
  @relative_link = args[:relative_link] if args.key?(:relative_link)
  @slide_index = args[:slide_index] if args.key?(:slide_index)
end