`UpdateItems` returns the response with `ReturnedItem` - `null`. This a fragment of my code: ```ts const data = await exch.UpdateItems( [meeting], folderId, ConflictResolutionMode.AlwaysOverwrite, disposition, sendMode, false, ); const response = data.Responses[0]; ``` Though private property `item` is not null and contains the correct information.
Activity
gautamsi commentedon Dec 20, 2024
you mean the item is returned from server and the library is not mapping the ReturnedItem value properly?
bladerunner2020 commentedon Dec 21, 2024
Yes.