class Google::Apis::SlidesV1::SlideProperties
The properties of Page
that are only relevant for pages with page_type SLIDE.
Attributes
Whether the slide is skipped in the presentation mode. Defaults to false. Corresponds to the JSON property `isSkipped` @return [Boolean]
Whether the slide is skipped in the presentation mode. Defaults to false. Corresponds to the JSON property `isSkipped` @return [Boolean]
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]
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]
A page in a presentation. Corresponds to the JSON property `notesPage` @return [Google::Apis::SlidesV1::Page]
Public Class Methods
# File lib/google/apis/slides_v1/classes.rb, line 3574 def initialize(**args) update!(**args) end
Public Instance Methods
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