Name |
Type |
Description |
Notes |
from firefly_iii_client.models.polymorphic_property import PolymorphicProperty
# TODO update the JSON string below
json = "{}"
# create an instance of PolymorphicProperty from a JSON string
polymorphic_property_instance = PolymorphicProperty.from_json(json)
# print the JSON string representation of the object
print(PolymorphicProperty.to_json())
# convert the object into a dict
polymorphic_property_dict = polymorphic_property_instance.to_dict()
# create an instance of PolymorphicProperty from a dict
polymorphic_property_form_dict = polymorphic_property.from_dict(polymorphic_property_dict)
[Back to Model list] [Back to API list] [Back to README]