Class: Google::Apis::SheetsV4::UpdateValuesResponse

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

The response when updating a range of values in a spreadsheet.

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

Returns a new instance of UpdateValuesResponse.



632
633
634
# File 'generated/google/apis/sheets_v4/classes.rb', line 632

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

Instance Attribute Details

#spreadsheet_idString

The spreadsheet the updates were applied to. Corresponds to the JSON property spreadsheetId

Returns:

  • (String)


620
621
622
# File 'generated/google/apis/sheets_v4/classes.rb', line 620

def spreadsheet_id
  @spreadsheet_id
end

#updated_cellsFixnum

The number of cells updated. Corresponds to the JSON property updatedCells

Returns:

  • (Fixnum)


630
631
632
# File 'generated/google/apis/sheets_v4/classes.rb', line 630

def updated_cells
  @updated_cells
end

#updated_columnsFixnum

The number of columns where at least one cell in the column was updated. Corresponds to the JSON property updatedColumns

Returns:

  • (Fixnum)


615
616
617
# File 'generated/google/apis/sheets_v4/classes.rb', line 615

def updated_columns
  @updated_columns
end

#updated_rangeString

The range (in A1 notation) that updates were applied to. Corresponds to the JSON property updatedRange

Returns:

  • (String)


610
611
612
# File 'generated/google/apis/sheets_v4/classes.rb', line 610

def updated_range
  @updated_range
end

#updated_rowsFixnum

The number of rows where at least one cell in the row was updated. Corresponds to the JSON property updatedRows

Returns:

  • (Fixnum)


625
626
627
# File 'generated/google/apis/sheets_v4/classes.rb', line 625

def updated_rows
  @updated_rows
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



637
638
639
640
641
642
643
# File 'generated/google/apis/sheets_v4/classes.rb', line 637

def update!(**args)
  @updated_range = args[:updated_range] if args.key?(:updated_range)
  @updated_columns = args[:updated_columns] if args.key?(:updated_columns)
  @spreadsheet_id = args[:spreadsheet_id] if args.key?(:spreadsheet_id)
  @updated_rows = args[:updated_rows] if args.key?(:updated_rows)
  @updated_cells = args[:updated_cells] if args.key?(:updated_cells)
end