Class: Google::Apis::SlidesV1::Presentation
- Inherits:
-
Object
- Object
- Google::Apis::SlidesV1::Presentation
- 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 Google Slides presentation.
Instance Attribute Summary collapse
-
#layouts ⇒ Array<Google::Apis::SlidesV1::Page>
The layouts in the presentation.
-
#locale ⇒ String
The locale of the presentation, as an IETF BCP 47 language tag.
-
#masters ⇒ Array<Google::Apis::SlidesV1::Page>
The slide masters in the presentation.
-
#notes_master ⇒ Google::Apis::SlidesV1::Page
A page in a presentation.
-
#page_size ⇒ Google::Apis::SlidesV1::Size
A width and height.
-
#presentation_id ⇒ String
The ID of the presentation.
-
#revision_id ⇒ String
The revision ID of the presentation.
-
#slides ⇒ Array<Google::Apis::SlidesV1::Page>
The slides in the presentation.
-
#title ⇒ String
The title of the presentation.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Presentation
constructor
A new instance of Presentation.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Presentation
Returns a new instance of Presentation
3472 3473 3474 |
# File 'generated/google/apis/slides_v1/classes.rb', line 3472 def initialize(**args) update!(**args) end |
Instance Attribute Details
#layouts ⇒ Array<Google::Apis::SlidesV1::Page>
The layouts in the presentation. A layout is a template that determines
how content is arranged and styled on the slides that inherit from that
layout.
Corresponds to the JSON property layouts
3436 3437 3438 |
# File 'generated/google/apis/slides_v1/classes.rb', line 3436 def layouts @layouts end |
#locale ⇒ String
The locale of the presentation, as an IETF BCP 47 language tag.
Corresponds to the JSON property locale
3454 3455 3456 |
# File 'generated/google/apis/slides_v1/classes.rb', line 3454 def locale @locale end |
#masters ⇒ Array<Google::Apis::SlidesV1::Page>
The slide masters in the presentation. A slide master contains all common page elements and the common properties for a set of layouts. They serve three purposes:
- Placeholder shapes on a master contain the default text styles and shape properties of all placeholder shapes on pages that use that master.
- The master page properties define the common page properties inherited by its layouts.
- Any other shapes on the master slide will appear on all slides using that
master, regardless of their layout.
Corresponds to the JSON property
masters
3449 3450 3451 |
# File 'generated/google/apis/slides_v1/classes.rb', line 3449 def masters @masters end |
#notes_master ⇒ Google::Apis::SlidesV1::Page
A page in a presentation.
Corresponds to the JSON property notesMaster
3424 3425 3426 |
# File 'generated/google/apis/slides_v1/classes.rb', line 3424 def notes_master @notes_master end |
#page_size ⇒ Google::Apis::SlidesV1::Size
A width and height.
Corresponds to the JSON property pageSize
3459 3460 3461 |
# File 'generated/google/apis/slides_v1/classes.rb', line 3459 def page_size @page_size end |
#presentation_id ⇒ String
The ID of the presentation.
Corresponds to the JSON property presentationId
3464 3465 3466 |
# File 'generated/google/apis/slides_v1/classes.rb', line 3464 def presentation_id @presentation_id end |
#revision_id ⇒ String
The revision ID of the presentation. Can be used in update requests
to assert that the presentation revision hasn't changed since the last
read operation. Only populated if the user has edit access to the
presentation.
The format of the revision ID may change over time, so it should be treated
opaquely. A returned revision ID is only guaranteed to be valid for 24
hours after it has been returned and cannot be shared across users. If the
revision ID is unchanged between calls, then the presentation has not
changed. Conversely, a changed ID (for the same presentation and user)
usually means the presentation has been updated; however, a changed ID can
also be due to internal factors such as ID format changes.
Corresponds to the JSON property revisionId
3419 3420 3421 |
# File 'generated/google/apis/slides_v1/classes.rb', line 3419 def revision_id @revision_id end |
#slides ⇒ Array<Google::Apis::SlidesV1::Page>
The slides in the presentation.
A slide inherits properties from a slide layout.
Corresponds to the JSON property slides
3470 3471 3472 |
# File 'generated/google/apis/slides_v1/classes.rb', line 3470 def @slides end |
#title ⇒ String
The title of the presentation.
Corresponds to the JSON property title
3429 3430 3431 |
# File 'generated/google/apis/slides_v1/classes.rb', line 3429 def title @title end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 |
# File 'generated/google/apis/slides_v1/classes.rb', line 3477 def update!(**args) @revision_id = args[:revision_id] if args.key?(:revision_id) @notes_master = args[:notes_master] if args.key?(:notes_master) @title = args[:title] if args.key?(:title) @layouts = args[:layouts] if args.key?(:layouts) @masters = args[:masters] if args.key?(:masters) @locale = args[:locale] if args.key?(:locale) @page_size = args[:page_size] if args.key?(:page_size) @presentation_id = args[:presentation_id] if args.key?(:presentation_id) @slides = args[:slides] if args.key?(:slides) end |