class Google::Apis::SheetsV4::AppendDimensionRequest
Appends rows or columns to the end of a sheet.
Attributes
dimension[RW]
Whether rows or columns should be appended. Corresponds to the JSON property `dimension` @return [String]
length[RW]
The number of rows or columns to append. Corresponds to the JSON property `length` @return [Fixnum]
sheet_id[RW]
The sheet to append rows or columns to. Corresponds to the JSON property `sheetId` @return [Fixnum]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/sheets_v4/classes.rb, line 480 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/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