class Google::Apis::SlidesV1::SlideProperties

The properties of Page that are only relevant for pages with page_type SLIDE.

Attributes

is_skipped[RW]

Whether the slide is skipped in the presentation mode. Defaults to false. Corresponds to the JSON property `isSkipped` @return [Boolean]

is_skipped?[RW]

Whether the slide is skipped in the presentation mode. Defaults to false. Corresponds to the JSON property `isSkipped` @return [Boolean]

layout_object_id[RW]

The object ID of the layout that this slide is based on. This property is read- only. Corresponds to the JSON property `layoutObjectId` @return [String]

master_object_id[RW]

The object ID of the master that this slide is based on. This property is read- only. Corresponds to the JSON property `masterObjectId` @return [String]

notes_page[RW]

A page in a presentation. Corresponds to the JSON property `notesPage` @return [Google::Apis::SlidesV1::Page]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/slides_v1/classes.rb, line 3574
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 3579
def update!(**args)
  @is_skipped = args[:is_skipped] if args.key?(:is_skipped)
  @layout_object_id = args[:layout_object_id] if args.key?(:layout_object_id)
  @master_object_id = args[:master_object_id] if args.key?(:master_object_id)
  @notes_page = args[:notes_page] if args.key?(:notes_page)
end