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.



1140
1141
1142
# File 'generated/google/apis/slides_v1/classes.rb', line 1140

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



1138
1139
1140
# File 'generated/google/apis/slides_v1/classes.rb', line 1138

def children
  @children
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1145
1146
1147
# File 'generated/google/apis/slides_v1/classes.rb', line 1145

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