class Google::Apis::SlidesV1::LayoutProperties
The properties of Page
are only relevant for pages with page_type LAYOUT.
Attributes
display_name[RW]
The human-readable name of the layout. Corresponds to the JSON property `displayName` @return [String]
master_object_id[RW]
The object ID of the master that this layout is based on. Corresponds to the JSON property `masterObjectId` @return [String]
name[RW]
The name of the layout. Corresponds to the JSON property `name` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/slides_v1/classes.rb, line 1503 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/slides_v1/classes.rb, line 1508 def update!(**args) @display_name = args[:display_name] if args.key?(:display_name) @master_object_id = args[:master_object_id] if args.key?(:master_object_id) @name = args[:name] if args.key?(:name) end