Class: Google::Apis::SlidesV1::SlideProperties

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

The properties of Page that are only relevant for pages with page_type SLIDE.

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) ⇒ SlideProperties

Returns a new instance of SlideProperties



1126
1127
1128
# File 'generated/google/apis/slides_v1/classes.rb', line 1126

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

Instance Attribute Details

#layout_object_idString

The object ID of the layout that this slide is based on. Corresponds to the JSON property layoutObjectId

Returns:

  • (String)


1114
1115
1116
# File 'generated/google/apis/slides_v1/classes.rb', line 1114

def layout_object_id
  @layout_object_id
end

#master_object_idString

The object ID of the master that this slide is based on. Corresponds to the JSON property masterObjectId

Returns:

  • (String)


1119
1120
1121
# File 'generated/google/apis/slides_v1/classes.rb', line 1119

def master_object_id
  @master_object_id
end

#notes_pageGoogle::Apis::SlidesV1::Page

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



1124
1125
1126
# File 'generated/google/apis/slides_v1/classes.rb', line 1124

def notes_page
  @notes_page
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1131
1132
1133
1134
1135
# File 'generated/google/apis/slides_v1/classes.rb', line 1131

def update!(**args)
  @layout_object_id = args[:layout_object_id] if args.key?(:layout_object_id)
  @master_object_id = args[:master_object_id] if args.key?(:master_object_id)
  @notes_page = args[:notes_page] if args.key?(:notes_page)
end