class Google::Apis::SlidesV1::LayoutReference

Slide layout reference. This may reference either: - A predefined layout - One of the layouts in the presentation.

Attributes

layout_id[RW]

Layout ID: the object ID of one of the layouts in the presentation. Corresponds to the JSON property `layoutId` @return [String]

predefined_layout[RW]

Predefined layout. Corresponds to the JSON property `predefinedLayout` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/slides_v1/classes.rb, line 1530
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 1535
def update!(**args)
  @layout_id = args[:layout_id] if args.key?(:layout_id)
  @predefined_layout = args[:predefined_layout] if args.key?(:predefined_layout)
end