Class: Google::Apis::SlidesV1::UngroupObjectsRequest

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

Ungroups objects, such as groups.

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

Returns a new instance of UngroupObjectsRequest



4265
4266
4267
# File 'generated/google/apis/slides_v1/classes.rb', line 4265

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

Instance Attribute Details

#object_idsArray<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

Returns:

  • (Array<String>)


4263
4264
4265
# File 'generated/google/apis/slides_v1/classes.rb', line 4263

def object_ids
  @object_ids
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4270
4271
4272
# File 'generated/google/apis/slides_v1/classes.rb', line 4270

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