Class: Google::Apis::SlidesV1::Group

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

A PageElement kind representing a joined collection of PageElements.

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

Returns a new instance of Group



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

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

Instance Attribute Details

#childrenArray<Google::Apis::SlidesV1::PageElement>

The collection of elements in the group. The minimum size of a group is 2. Corresponds to the JSON property children



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

def children
  @children
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



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

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