Class: Google::Apis::SheetsV4::UpdateValuesByDataFilterResponse

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

Overview

The response when updating a range of values by a data filter in a spreadsheet.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ UpdateValuesByDataFilterResponse

Returns a new instance of UpdateValuesByDataFilterResponse.



10950
10951
10952
# File 'lib/google/apis/sheets_v4/classes.rb', line 10950

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

Instance Attribute Details

#data_filterGoogle::Apis::SheetsV4::DataFilter

Filter that describes what data should be selected or returned from a request. Corresponds to the JSON property dataFilter



10922
10923
10924
# File 'lib/google/apis/sheets_v4/classes.rb', line 10922

def data_filter
  @data_filter
end

#updated_cellsFixnum

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

Returns:

  • (Fixnum)


10927
10928
10929
# File 'lib/google/apis/sheets_v4/classes.rb', line 10927

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)


10932
10933
10934
# File 'lib/google/apis/sheets_v4/classes.rb', line 10932

def updated_columns
  @updated_columns
end

#updated_dataGoogle::Apis::SheetsV4::ValueRange

Data within a range of the spreadsheet. Corresponds to the JSON property updatedData



10937
10938
10939
# File 'lib/google/apis/sheets_v4/classes.rb', line 10937

def updated_data
  @updated_data
end

#updated_rangeString

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

Returns:

  • (String)


10943
10944
10945
# File 'lib/google/apis/sheets_v4/classes.rb', line 10943

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)


10948
10949
10950
# File 'lib/google/apis/sheets_v4/classes.rb', line 10948

def updated_rows
  @updated_rows
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



10955
10956
10957
10958
10959
10960
10961
10962
# File 'lib/google/apis/sheets_v4/classes.rb', line 10955

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