Class: Google::Apis::SheetsV4::BatchUpdateValuesByDataFilterResponse

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

Returns a new instance of BatchUpdateValuesByDataFilterResponse.



2131
2132
2133
# File 'generated/google/apis/sheets_v4/classes.rb', line 2131

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

Instance Attribute Details

#responsesArray<Google::Apis::SheetsV4::UpdateValuesByDataFilterResponse>

The response for each range updated. Corresponds to the JSON property responses



2102
2103
2104
# File 'generated/google/apis/sheets_v4/classes.rb', line 2102

def responses
  @responses
end

#spreadsheet_idString

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

Returns:

  • (String)


2107
2108
2109
# File 'generated/google/apis/sheets_v4/classes.rb', line 2107

def spreadsheet_id
  @spreadsheet_id
end

#total_updated_cellsFixnum

The total number of cells updated. Corresponds to the JSON property totalUpdatedCells

Returns:

  • (Fixnum)


2112
2113
2114
# File 'generated/google/apis/sheets_v4/classes.rb', line 2112

def total_updated_cells
  @total_updated_cells
end

#total_updated_columnsFixnum

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

Returns:

  • (Fixnum)


2118
2119
2120
# File 'generated/google/apis/sheets_v4/classes.rb', line 2118

def total_updated_columns
  @total_updated_columns
end

#total_updated_rowsFixnum

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

Returns:

  • (Fixnum)


2123
2124
2125
# File 'generated/google/apis/sheets_v4/classes.rb', line 2123

def total_updated_rows
  @total_updated_rows
end

#total_updated_sheetsFixnum

The total number of sheets where at least one cell in the sheet was updated. Corresponds to the JSON property totalUpdatedSheets

Returns:

  • (Fixnum)


2129
2130
2131
# File 'generated/google/apis/sheets_v4/classes.rb', line 2129

def total_updated_sheets
  @total_updated_sheets
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2136
2137
2138
2139
2140
2141
2142
2143
# File 'generated/google/apis/sheets_v4/classes.rb', line 2136

def update!(**args)
  @responses = args[:responses] if args.key?(:responses)
  @spreadsheet_id = args[:spreadsheet_id] if args.key?(:spreadsheet_id)
  @total_updated_cells = args[:total_updated_cells] if args.key?(:total_updated_cells)
  @total_updated_columns = args[:total_updated_columns] if args.key?(:total_updated_columns)
  @total_updated_rows = args[:total_updated_rows] if args.key?(:total_updated_rows)
  @total_updated_sheets = args[:total_updated_sheets] if args.key?(:total_updated_sheets)
end