Class: Google::Apis::SheetsV4::Spreadsheet
- Inherits:
-
Object
- Object
- Google::Apis::SheetsV4::Spreadsheet
- 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
Resource that represents a spreadsheet.
Instance Attribute Summary collapse
-
#named_ranges ⇒ Array<Google::Apis::SheetsV4::NamedRange>
The named ranges defined in a spreadsheet.
-
#properties ⇒ Google::Apis::SheetsV4::SpreadsheetProperties
Properties of a spreadsheet.
-
#sheets ⇒ Array<Google::Apis::SheetsV4::Sheet>
The sheets that are part of a spreadsheet.
-
#spreadsheet_id ⇒ String
The ID of the spreadsheet.
-
#spreadsheet_url ⇒ String
The url of the spreadsheet.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Spreadsheet
constructor
A new instance of Spreadsheet.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Spreadsheet
Returns a new instance of Spreadsheet
6443 6444 6445 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 6443 def initialize(**args) update!(**args) end |
Instance Attribute Details
#named_ranges ⇒ Array<Google::Apis::SheetsV4::NamedRange>
The named ranges defined in a spreadsheet.
Corresponds to the JSON property namedRanges
6419 6420 6421 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 6419 def named_ranges @named_ranges end |
#properties ⇒ Google::Apis::SheetsV4::SpreadsheetProperties
Properties of a spreadsheet.
Corresponds to the JSON property properties
6424 6425 6426 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 6424 def properties @properties end |
#sheets ⇒ Array<Google::Apis::SheetsV4::Sheet>
The sheets that are part of a spreadsheet.
Corresponds to the JSON property sheets
6429 6430 6431 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 6429 def sheets @sheets end |
#spreadsheet_id ⇒ String
The ID of the spreadsheet.
This field is read-only.
Corresponds to the JSON property spreadsheetId
6435 6436 6437 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 6435 def spreadsheet_id @spreadsheet_id end |
#spreadsheet_url ⇒ String
The url of the spreadsheet.
This field is read-only.
Corresponds to the JSON property spreadsheetUrl
6441 6442 6443 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 6441 def spreadsheet_url @spreadsheet_url end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6448 6449 6450 6451 6452 6453 6454 |
# File 'generated/google/apis/sheets_v4/classes.rb', line 6448 def update!(**args) @named_ranges = args[:named_ranges] if args.key?(:named_ranges) @properties = args[:properties] if args.key?(:properties) @sheets = args[:sheets] if args.key?(:sheets) @spreadsheet_id = args[:spreadsheet_id] if args.key?(:spreadsheet_id) @spreadsheet_url = args[:spreadsheet_url] if args.key?(:spreadsheet_url) end |