class Google::Apis::SlidesV1::UpdateSlidesPositionRequest

Updates the position of slides in the presentation.

Attributes

insertion_index[RW]

The index where the slides should be inserted, based on the slide arrangement before the move takes place. Must be between zero and the number of slides in the presentation, inclusive. Corresponds to the JSON property `insertionIndex` @return [Fixnum]

slide_object_ids[RW]

The IDs of the slides in the presentation that should be moved. The slides in this list must be in existing presentation order, without duplicates. Corresponds to the JSON property `slideObjectIds` @return [Array<String>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/slides_v1/classes.rb, line 4791
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/slides_v1/classes.rb, line 4796
def update!(**args)
  @insertion_index = args[:insertion_index] if args.key?(:insertion_index)
  @slide_object_ids = args[:slide_object_ids] if args.key?(:slide_object_ids)
end