Results 2 comments of Jeff

@andrueastman using an older sdk this kind of code worked to get an applicationInstance ```csharp var appInstanceData = call.Resource.Targets.FirstOrDefault(c => c.Identity.AdditionalData != null); if (appInstanceData.Identity.AdditionalData.TryGetValue("applicationInstance", out object value)) { var...

@andrueastman The type of the call object in my code is `ICall` in the `Microsoft.Graph.Communications.Calls` namespace. The call object has an `AdditionalData` property which is of type `IDictionary` and that...