Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 923 Bytes

PolymorphicProperty.md

File metadata and controls

28 lines (19 loc) · 923 Bytes

PolymorphicProperty

Properties

Name Type Description Notes

Example

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]