Related to microsoftgraph/msgraph-sdk-java#2063
The json serializer does not handle JsonObject types resulting in illegalState exception as only the property is written.
We should probably add a case for the same at
|
if (valueClass.equals(String.class)) this.writeStringValue(key, (String) value); |