A method stub that directly calls `spreadsheets.get `_.
(self, id: str, params: Optional[ParamsType] = None)
| 269 | return r.json() |
| 270 | |
| 271 | def spreadsheets_get(self, id: str, params: Optional[ParamsType] = None) -> Any: |
| 272 | """A method stub that directly calls `spreadsheets.get <https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets/get>`_.""" |
| 273 | url = SPREADSHEET_URL % id |
| 274 | r = self.request("get", url, params=params) |
| 275 | return r.json() |
| 276 | |
| 277 | def spreadsheets_sheets_copy_to( |
| 278 | self, id: str, sheet_id: int, destination_spreadsheet_id: str |
no test coverage detected