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

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Presentation

Returns a new instance of Presentation



2022
2023
2024
# File 'generated/google/apis/slides_v1/classes.rb', line 2022

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:



1997
1998
1999
# File 'generated/google/apis/slides_v1/classes.rb', line 1997

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)


2007
2008
2009
# File 'generated/google/apis/slides_v1/classes.rb', line 2007

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

Returns:



2020
2021
2022
# File 'generated/google/apis/slides_v1/classes.rb', line 2020

def masters
  @masters
end

#notes_masterGoogle::Apis::SlidesV1::Page

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



1990
1991
1992
# File 'generated/google/apis/slides_v1/classes.rb', line 1990

def notes_master
  @notes_master
end

#page_sizeGoogle::Apis::SlidesV1::Size

A width and height. Corresponds to the JSON property pageSize



1974
1975
1976
# File 'generated/google/apis/slides_v1/classes.rb', line 1974

def page_size
  @page_size
end

#presentation_idString

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

Returns:

  • (String)


1979
1980
1981
# File 'generated/google/apis/slides_v1/classes.rb', line 1979

def presentation_id
  @presentation_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:



1985
1986
1987
# File 'generated/google/apis/slides_v1/classes.rb', line 1985

def slides
  @slides
end

#titleString

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

Returns:

  • (String)


2002
2003
2004
# File 'generated/google/apis/slides_v1/classes.rb', line 2002

def title
  @title
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
# File 'generated/google/apis/slides_v1/classes.rb', line 2027

def update!(**args)
  @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)
  @notes_master = args[:notes_master] if args.key?(:notes_master)
  @layouts = args[:layouts] if args.key?(:layouts)
  @title = args[:title] if args.key?(:title)
  @locale = args[:locale] if args.key?(:locale)
  @masters = args[:masters] if args.key?(:masters)
end