Class: Google::Apis::SheetsV4::AppendDimensionRequest

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

Appends rows or columns to the end of a sheet.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AppendDimensionRequest

Returns a new instance of AppendDimensionRequest.



480
481
482
# File 'generated/google/apis/sheets_v4/classes.rb', line 480

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

Instance Attribute Details

#dimensionString

Whether rows or columns should be appended. Corresponds to the JSON property dimension

Returns:

  • (String)


468
469
470
# File 'generated/google/apis/sheets_v4/classes.rb', line 468

def dimension
  @dimension
end

#lengthFixnum

The number of rows or columns to append. Corresponds to the JSON property length

Returns:

  • (Fixnum)


473
474
475
# File 'generated/google/apis/sheets_v4/classes.rb', line 473

def length
  @length
end

#sheet_idFixnum

The sheet to append rows or columns to. Corresponds to the JSON property sheetId

Returns:

  • (Fixnum)


478
479
480
# File 'generated/google/apis/sheets_v4/classes.rb', line 478

def sheet_id
  @sheet_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



485
486
487
488
489
# File 'generated/google/apis/sheets_v4/classes.rb', line 485

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