Class: Google::Apis::SheetsV4::DuplicateSheetRequest

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/sheets_v4/classes.rb,
generated/google/apis/sheets_v4/representations.rb,
generated/google/apis/sheets_v4/representations.rb

Overview

Duplicates the contents of a sheet.

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

Returns a new instance of DuplicateSheetRequest.



3639
3640
3641
# File 'generated/google/apis/sheets_v4/classes.rb', line 3639

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

Instance Attribute Details

#insert_sheet_indexFixnum

The zero-based index where the new sheet should be inserted. The index of all sheets after this are incremented. Corresponds to the JSON property insertSheetIndex

Returns:

  • (Fixnum)


3632
3633
3634
# File 'generated/google/apis/sheets_v4/classes.rb', line 3632

def insert_sheet_index
  @insert_sheet_index
end

#new_sheet_idFixnum

If set, the ID of the new sheet. If not set, an ID is chosen. If set, the ID must not conflict with any existing sheet ID. If set, it must be non-negative. Corresponds to the JSON property newSheetId

Returns:

  • (Fixnum)


3626
3627
3628
# File 'generated/google/apis/sheets_v4/classes.rb', line 3626

def new_sheet_id
  @new_sheet_id
end

#new_sheet_nameString

The name of the new sheet. If empty, a new name is chosen for you. Corresponds to the JSON property newSheetName

Returns:

  • (String)


3637
3638
3639
# File 'generated/google/apis/sheets_v4/classes.rb', line 3637

def new_sheet_name
  @new_sheet_name
end

#source_sheet_idFixnum

The sheet to duplicate. Corresponds to the JSON property sourceSheetId

Returns:

  • (Fixnum)


3619
3620
3621
# File 'generated/google/apis/sheets_v4/classes.rb', line 3619

def source_sheet_id
  @source_sheet_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3644
3645
3646
3647
3648
3649
# File 'generated/google/apis/sheets_v4/classes.rb', line 3644

def update!(**args)
  @source_sheet_id = args[:source_sheet_id] if args.key?(:source_sheet_id)
  @new_sheet_id = args[:new_sheet_id] if args.key?(:new_sheet_id)
  @insert_sheet_index = args[:insert_sheet_index] if args.key?(:insert_sheet_index)
  @new_sheet_name = args[:new_sheet_name] if args.key?(:new_sheet_name)
end