googlesheets package must gather information on a Google Sheet
from googlesheet
object. Note this object does not contain any sheet data, but rather contains
metadata about the sheet. We populate a googlesheet
object with information from the
gs_title(x, verbose = TRUE)gs_key(x, lookup = NULL, visibility = NULL, verbose = TRUE)
gs_url(x, lookup = NULL, visibility = NULL, verbose = TRUE)
gs_ws_feed(x, lookup = NULL, verbose = TRUE)
gs_gs(x, visibility = NULL, verbose = TRUE)
gs_gs only, a googlesheet objectgooglesheets will
place authenticated API requests during registration. If unspecified, will
be set to TRUE if authentication has previously been used in this R
session, if working directory colookup = FALSE and googlesheets is prevented from
looking up information in the spreadsheetsgooglesheet objectgooglesheet will contain information on:sheet_keythe key of the spreadsheetsheet_titlethe title of the spreadsheetn_wsthe number of worksheets contained in the spreadsheetws_feedthe "worksheets feed" of the spreadsheetupdatedthe time of last update (at time of registration)reg_datethe time of registrationvisibilityvisibility of spreadsheet (Google's confusing
    vocabulary); actually, does not describe a property of spreadsheet
    itself but rather whether requests will be made with or without
    authenticationis_publiclogical indicating visibility is "public" (meaning
    unauthenticated requests will be sent), as opposed to "private" (meaning
    authenticated requests will be sent)authorthe name of the owneremailthe email of the ownerlinksdata.frame of links specific to the spreadsheetwsa data.frame about the worksheets contained in the
  spreadsheetA googlesheet object will contain this information from the
spreadsheets feed if it was available at the time of registration:
alt_keyalternate key; applies only to "old" sheetsSince the spreadsheets feed contains private user data, googlesheets
must use authentication to access it. So a googlesheet object will
only contain info from the spreadsheets feed if lookup = TRUE, which
directs us to look up sheet-identifying information in the spreadsheets feed.