Module: SheetsAPI

Defined in:
lib/sheetsAPI.rb

Defined Under Namespace

Classes: Document, Sheet

Constant Summary collapse

SheetService =
Google::Apis::SheetsV4::SheetsService.new
DriveService =
Google::Apis::DriveV3::DriveService.new

Class Method Summary collapse

Class Method Details

.document(name: nil, id: nil) ⇒ Object

This will raise if the document cannot be opened



26
27
28
# File 'lib/sheetsAPI.rb', line 26

def document(name: nil, id: nil)
  return Document.new(documentName: name, documentId: id)
end