(self)
| 83 | yield from self.worksheets() |
| 84 | |
| 85 | def __repr__(self) -> str: |
| 86 | return "<{} {} id:{}>".format( |
| 87 | self.__class__.__name__, |
| 88 | repr(self.title), |
| 89 | self.id, |
| 90 | ) |
| 91 | |
| 92 | def batch_update(self, body: Mapping[str, Any]) -> Any: |
| 93 | """Lower-level method that directly calls `spreadsheets/<ID>:batchUpdate <https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets/batchUpdate>`_. |