There is an id field nested in the TeamsCallDetails node. I would like to keep it as “id”, but the .Net API converts it to “_id”, even though I already have a document “_id”. Is there a way to override this?
Here is the poco class for the embedded node:
public class TeamsCallDetails
{
[JsonPropertyName("modalities")]
public IEnumerable<string> Modalities { get; set; }
[JsonPropertyName("id")]
public string Id { get; set; }
}