Class: Google::Apis::SlidesV1::LayoutProperties

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 are only relevant for pages with page_type LAYOUT.

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

Returns a new instance of LayoutProperties



2146
2147
2148
# File 'generated/google/apis/slides_v1/classes.rb', line 2146

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

Instance Attribute Details

#display_nameString

The human-readable name of the layout. Corresponds to the JSON property displayName

Returns:

  • (String)


2139
2140
2141
# File 'generated/google/apis/slides_v1/classes.rb', line 2139

def display_name
  @display_name
end

#master_object_idString

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

Returns:

  • (String)


2144
2145
2146
# File 'generated/google/apis/slides_v1/classes.rb', line 2144

def master_object_id
  @master_object_id
end

#nameString

The name of the layout. Corresponds to the JSON property name

Returns:

  • (String)


2134
2135
2136
# File 'generated/google/apis/slides_v1/classes.rb', line 2134

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2151
2152
2153
2154
2155
# File 'generated/google/apis/slides_v1/classes.rb', line 2151

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