Class: Google::Apis::SlidesV1::Page

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 page in a 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) ⇒ Page

Returns a new instance of Page



2004
2005
2006
# File 'generated/google/apis/slides_v1/classes.rb', line 2004

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

Instance Attribute Details

#layout_propertiesGoogle::Apis::SlidesV1::LayoutProperties

The properties of Page are only relevant for pages with page_type LAYOUT. Corresponds to the JSON property layoutProperties



1943
1944
1945
# File 'generated/google/apis/slides_v1/classes.rb', line 1943

def layout_properties
  @layout_properties
end

#master_propertiesGoogle::Apis::SlidesV1::MasterProperties

The properties of Page that are only relevant for pages with page_type MASTER. Corresponds to the JSON property masterProperties



1949
1950
1951
# File 'generated/google/apis/slides_v1/classes.rb', line 1949

def master_properties
  @master_properties
end

#notes_propertiesGoogle::Apis::SlidesV1::NotesProperties

The properties of Page that are only relevant for pages with page_type NOTES. Corresponds to the JSON property notesProperties



1955
1956
1957
# File 'generated/google/apis/slides_v1/classes.rb', line 1955

def notes_properties
  @notes_properties
end

#object_id_propString

The object ID for this page. Object IDs used by Page and PageElement share the same namespace. Corresponds to the JSON property objectId

Returns:

  • (String)


1962
1963
1964
# File 'generated/google/apis/slides_v1/classes.rb', line 1962

def object_id_prop
  @object_id_prop
end

#page_elementsArray<Google::Apis::SlidesV1::PageElement>

The page elements rendered on the page. Corresponds to the JSON property pageElements



1967
1968
1969
# File 'generated/google/apis/slides_v1/classes.rb', line 1967

def page_elements
  @page_elements
end

#page_propertiesGoogle::Apis::SlidesV1::PageProperties

The properties of the Page. The page will inherit properties from the parent page. Depending on the page type the hierarchy is defined in either SlideProperties or LayoutProperties. Corresponds to the JSON property pageProperties



1976
1977
1978
# File 'generated/google/apis/slides_v1/classes.rb', line 1976

def page_properties
  @page_properties
end

#page_typeString

The type of the page. Corresponds to the JSON property pageType

Returns:

  • (String)


1981
1982
1983
# File 'generated/google/apis/slides_v1/classes.rb', line 1981

def page_type
  @page_type
end

#revision_idString

The revision ID of the presentation containing this page. 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)


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

def revision_id
  @revision_id
end

#slide_propertiesGoogle::Apis::SlidesV1::SlideProperties

The properties of Page that are only relevant for pages with page_type SLIDE. Corresponds to the JSON property slideProperties



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

def slide_properties
  @slide_properties
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
# File 'generated/google/apis/slides_v1/classes.rb', line 2009

def update!(**args)
  @layout_properties = args[:layout_properties] if args.key?(:layout_properties)
  @master_properties = args[:master_properties] if args.key?(:master_properties)
  @notes_properties = args[:notes_properties] if args.key?(:notes_properties)
  @object_id_prop = args[:object_id_prop] if args.key?(:object_id_prop)
  @page_elements = args[:page_elements] if args.key?(:page_elements)
  @page_properties = args[:page_properties] if args.key?(:page_properties)
  @page_type = args[:page_type] if args.key?(:page_type)
  @revision_id = args[:revision_id] if args.key?(:revision_id)
  @slide_properties = args[:slide_properties] if args.key?(:slide_properties)
end