class Google::Apis::SheetsV4::UpdateValuesByDataFilterResponse
The response when updating a range of values by a data filter in a spreadsheet.
Attributes
Filter that describes what data should be selected or returned from a request. Corresponds to the JSON property `dataFilter` @return [Google::Apis::SheetsV4::DataFilter]
The number of cells updated. Corresponds to the JSON property `updatedCells` @return [Fixnum]
The number of columns where at least one cell in the column was updated. Corresponds to the JSON property `updatedColumns` @return [Fixnum]
Data within a range of the spreadsheet. Corresponds to the JSON property `updatedData` @return [Google::Apis::SheetsV4::ValueRange]
The range (in A1 notation) that updates were applied to. Corresponds to the JSON property `updatedRange` @return [String]
The number of rows where at least one cell in the row was updated. Corresponds to the JSON property `updatedRows` @return [Fixnum]
Public Class Methods
# File lib/google/apis/sheets_v4/classes.rb, line 10947 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/sheets_v4/classes.rb, line 10952 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