A method stub that directly calls `spreadsheets.get `_.
(self, params: Optional[ParamsType] = None)
| 204 | return self.client.values_batch_update(self.id, body=body) |
| 205 | |
| 206 | def _spreadsheets_get(self, params: Optional[ParamsType] = None) -> Any: |
| 207 | """A method stub that directly calls `spreadsheets.get <https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets/get>`_.""" |
| 208 | return self.client.spreadsheets_get(self.id, params=params) |
| 209 | |
| 210 | def _spreadsheets_sheets_copy_to( |
| 211 | self, sheet_id: int, destination_spreadsheet_id: str |