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



39
40
41
# File 'lib/sheetsAPI.rb', line 39

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