Class: Google::Apis::SheetsV4::AppendValuesResponse

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

Returns a new instance of AppendValuesResponse



4224
4225
4226
# File 'generated/google/apis/sheets_v4/classes.rb', line 4224

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)


4222
4223
4224
# File 'generated/google/apis/sheets_v4/classes.rb', line 4222

def spreadsheet_id
  @spreadsheet_id
end

#table_rangeString

The range (in A1 notation) of the table that values are being appended to (before the values were appended). Empty if no table was found. Corresponds to the JSON property tableRange

Returns:

  • (String)


4217
4218
4219
# File 'generated/google/apis/sheets_v4/classes.rb', line 4217

def table_range
  @table_range
end

#updatesGoogle::Apis::SheetsV4::UpdateValuesResponse

The response when updating a range of values in a spreadsheet. Corresponds to the JSON property updates



4210
4211
4212
# File 'generated/google/apis/sheets_v4/classes.rb', line 4210

def updates
  @updates
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4229
4230
4231
4232
4233
# File 'generated/google/apis/sheets_v4/classes.rb', line 4229

def update!(**args)
  @updates = args[:updates] if args.key?(:updates)
  @table_range = args[:table_range] if args.key?(:table_range)
  @spreadsheet_id = args[:spreadsheet_id] if args.key?(:spreadsheet_id)
end