Class: Google::Apis::SlidesV1::Presentation

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/slides_v1/classes.rb,
lib/google/apis/slides_v1/representations.rb,
lib/google/apis/slides_v1/representations.rb

Overview

A Google Slides presentation.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Presentation

Returns a new instance of Presentation.



2451
2452
2453
# File 'lib/google/apis/slides_v1/classes.rb', line 2451

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#layoutsArray<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

Returns:



2393
2394
2395
# File 'lib/google/apis/slides_v1/classes.rb', line 2393

def layouts
  @layouts
end

#localeString

The locale of the presentation, as an IETF BCP 47 language tag. Corresponds to the JSON property locale

Returns:

  • (String)


2398
2399
2400
# File 'lib/google/apis/slides_v1/classes.rb', line 2398

def locale
  @locale
end

#mastersArray<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 appear on all slides using that master, regardless of their layout. Corresponds to the JSON property masters

Returns:



2409
2410
2411
# File 'lib/google/apis/slides_v1/classes.rb', line 2409

def masters
  @masters
end

#notes_masterGoogle::Apis::SlidesV1::Page

A page in a presentation. Corresponds to the JSON property notesMaster



2414
2415
2416
# File 'lib/google/apis/slides_v1/classes.rb', line 2414

def notes_master
  @notes_master
end

#page_sizeGoogle::Apis::SlidesV1::Size

A width and height. Corresponds to the JSON property pageSize



2419
2420
2421
# File 'lib/google/apis/slides_v1/classes.rb', line 2419

def page_size
  @page_size
end

#presentation_idString

The ID of the presentation. Corresponds to the JSON property presentationId

Returns:

  • (String)


2424
2425
2426
# File 'lib/google/apis/slides_v1/classes.rb', line 2424

def presentation_id
  @presentation_id
end

#revision_idString

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

Returns:

  • (String)


2438
2439
2440
# File 'lib/google/apis/slides_v1/classes.rb', line 2438

def revision_id
  @revision_id
end

#slidesArray<Google::Apis::SlidesV1::Page>

The slides in the presentation. A slide inherits properties from a slide layout. Corresponds to the JSON property slides

Returns:



2444
2445
2446
# File 'lib/google/apis/slides_v1/classes.rb', line 2444

def slides
  @slides
end

#titleString

The title of the presentation. Corresponds to the JSON property title

Returns:

  • (String)


2449
2450
2451
# File 'lib/google/apis/slides_v1/classes.rb', line 2449

def title
  @title
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
# File 'lib/google/apis/slides_v1/classes.rb', line 2456

def update!(**args)
  @layouts = args[:layouts] if args.key?(:layouts)
  @locale = args[:locale] if args.key?(:locale)
  @masters = args[:masters] if args.key?(:masters)
  @notes_master = args[:notes_master] if args.key?(:notes_master)
  @page_size = args[:page_size] if args.key?(:page_size)
  @presentation_id = args[:presentation_id] if args.key?(:presentation_id)
  @revision_id = args[:revision_id] if args.key?(:revision_id)
  @slides = args[:slides] if args.key?(:slides)
  @title = args[:title] if args.key?(:title)
end