1.12.0-rc13

(feat): Add support for receiving additional properties in object types with the new AdditionalProperties field. This is useful when you want to parse an object that has properties that are not available in the SDK (e.g. alpha and/or undocumented properties).

1// Call the endpoint.
2var response = await client.GetUser(...);
3
4// Print the additional properties.
5Console.WriteLine(response.AdditionalProperties);