isSkipped = $isSkipped; } /** * @return bool */ public function getIsSkipped() { return $this->isSkipped; } /** * The object ID of the layout that this slide is based on. This property is * read-only. * * @param string $layoutObjectId */ public function setLayoutObjectId($layoutObjectId) { $this->layoutObjectId = $layoutObjectId; } /** * @return string */ public function getLayoutObjectId() { return $this->layoutObjectId; } /** * The object ID of the master that this slide is based on. This property is * read-only. * * @param string $masterObjectId */ public function setMasterObjectId($masterObjectId) { $this->masterObjectId = $masterObjectId; } /** * @return string */ public function getMasterObjectId() { return $this->masterObjectId; } /** * The notes page that this slide is associated with. It defines the visual * appearance of a notes page when printing or exporting slides with speaker * notes. A notes page inherits properties from the notes master. The * placeholder shape with type BODY on the notes page contains the speaker * notes for this slide. The ID of this shape is identified by the * speakerNotesObjectId field. The notes page is read-only except for the text * content and styles of the speaker notes shape. This property is read-only. * * @param Page $notesPage */ public function setNotesPage(Page $notesPage) { $this->notesPage = $notesPage; } /** * @return Page */ public function getNotesPage() { return $this->notesPage; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(SlideProperties::class, 'Google_Service_Slides_SlideProperties');