Worksheet range: the methods for the IWorkbookWorksheetRangeRequestBuilder class that are documented are missing, with the exception of buildRequest.
The java sdk client is missing the methods for the IWorkbookWorksheetRangeRequestBuilder class that are documented, with the exception of buildRequest.
com.microsoft.graph
microsoft-graph
1.6.0
Example:
graphClient.me().drive().items("{id}").workbook().worksheets("{sheet-id}")
.range("$A$1").format().font()
.buildRequest()
.patch(workbookRangeFont);
.format() is not available, as well as .clear(), .merge(), .delete() etc...
---- Davide
Expected behavior
.format() is available, as well as .clear(), .merge(), .delete() etc...
Actual behavior
Only buildRequest() is available.
Steps to reproduce the behavior
Write some code that returns a IWorkbookWorksheetRangeRequestBuilder, like the examples in the docs.
AB#6037