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

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/slides_v1/classes.rb,
lib/google/apis/slides_v1/representations.rb,
lib/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

Constructor Details

#initialize(**args) ⇒ LayoutProperties

Returns a new instance of LayoutProperties.



1503
1504
1505
# File 'lib/google/apis/slides_v1/classes.rb', line 1503

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)


1491
1492
1493
# File 'lib/google/apis/slides_v1/classes.rb', line 1491

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)


1496
1497
1498
# File 'lib/google/apis/slides_v1/classes.rb', line 1496

def master_object_id
  @master_object_id
end

#nameString

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

Returns:

  • (String)


1501
1502
1503
# File 'lib/google/apis/slides_v1/classes.rb', line 1501

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1508
1509
1510
1511
1512
# 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