### Describe the bug Initializing a WorkbookTableRow as described in the [API reference](https://learn.microsoft.com/en-us/graph/api/table-post-rows?view=graph-rest-1.0&tabs=python) results in a TypeError. ### Expected behavior Correct initialization of a WorkbookTableRow in order to append a row to a workbook table. ### How to reproduce ```python # from https://learn.microsoft.com/en-us/graph/api/table-post-rows?view=graph-rest-1.0&tabs=python from msgraph.generated.models.workbook_table_row import WorkbookTableRow request_body = WorkbookTableRow( values = [ [ 1, 2, 3, ], [ 4, 5, 6, ], ], ) ``` ### SDK Version 1.10.0 ### Latest version known to work for scenario above? _No response_ ### Known Workarounds _No response_ ### Debug output ``` Traceback (most recent call last): File "example.py", line 3, in <module> request_body = WorkbookTableRow( TypeError: WorkbookTableRow.__init__() got an unexpected keyword argument 'values' ``` ### Configuration _No response_ ### Other information _No response_