Class: Google::Apis::SlidesV1::UngroupObjectsRequest
- Inherits:
-
Object
- Object
- Google::Apis::SlidesV1::UngroupObjectsRequest
- 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
Ungroups objects, such as groups.
Instance Attribute Summary collapse
-
#object_ids ⇒ Array<String>
The object IDs of the objects to ungroup.
Instance Method Summary collapse
-
#initialize(**args) ⇒ UngroupObjectsRequest
constructor
A new instance of UngroupObjectsRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ UngroupObjectsRequest
Returns a new instance of UngroupObjectsRequest.
4416 4417 4418 |
# File 'lib/google/apis/slides_v1/classes.rb', line 4416 def initialize(**args) update!(**args) end |
Instance Attribute Details
#object_ids ⇒ Array<String>
The object IDs of the objects to ungroup. Only groups that are not inside
other groups can be ungrouped. All the groups should be on the same page. The
group itself is deleted. The visual sizes and positions of all the children
are preserved.
Corresponds to the JSON property objectIds
4414 4415 4416 |
# File 'lib/google/apis/slides_v1/classes.rb', line 4414 def object_ids @object_ids end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4421 4422 4423 |
# File 'lib/google/apis/slides_v1/classes.rb', line 4421 def update!(**args) @object_ids = args[:object_ids] if args.key?(:object_ids) end |