Class: Google::Apis::SlidesV1::NotesProperties
- Inherits:
-
Object
- Object
- Google::Apis::SlidesV1::NotesProperties
- 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
The properties of Page that are only relevant for pages with page_type NOTES.
Instance Attribute Summary collapse
-
#speaker_notes_object_id ⇒ String
The object ID of the shape on this notes page that contains the speaker notes for the corresponding slide.
Instance Method Summary collapse
-
#initialize(**args) ⇒ NotesProperties
constructor
A new instance of NotesProperties.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ NotesProperties
Returns a new instance of NotesProperties
1898 1899 1900 |
# File 'generated/google/apis/slides_v1/classes.rb', line 1898 def initialize(**args) update!(**args) end |
Instance Attribute Details
#speaker_notes_object_id ⇒ String
The object ID of the shape on this notes page that contains the speaker
notes for the corresponding slide.
The actual shape may not always exist on the notes page. Inserting text
using this object ID will automatically create the shape. In this case, the
actual shape may have different object ID. The GetPresentation
or
GetPage
action will always return the latest object ID.
Corresponds to the JSON property speakerNotesObjectId
1896 1897 1898 |
# File 'generated/google/apis/slides_v1/classes.rb', line 1896 def speaker_notes_object_id @speaker_notes_object_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1903 1904 1905 |
# File 'generated/google/apis/slides_v1/classes.rb', line 1903 def update!(**args) @speaker_notes_object_id = args[:speaker_notes_object_id] if args.key?(:speaker_notes_object_id) end |