Open
Description
ParseNode.get_object_value(Parsable)
expects its arg to be of type Parsable
. When you however pass to it ConnectionOperation.create_from_discriminator_value()
which returns an instance of ConnectionOperation
which inherits from Entity
which inherits from Parsable
, you get an error saying that ConnectionOperation
is not compatible with Parsable
.