Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 1009 Bytes

File metadata and controls

28 lines (19 loc) · 1009 Bytes

LedgerEntryParentObjectID

Properties

Name Type Description Notes

Example

from wallet.models.ledger_entry_parent_object_id import LedgerEntryParentObjectID

# TODO update the JSON string below
json = "{}"
# create an instance of LedgerEntryParentObjectID from a JSON string
ledger_entry_parent_object_id_instance = LedgerEntryParentObjectID.from_json(json)
# print the JSON string representation of the object
print LedgerEntryParentObjectID.to_json()

# convert the object into a dict
ledger_entry_parent_object_id_dict = ledger_entry_parent_object_id_instance.to_dict()
# create an instance of LedgerEntryParentObjectID from a dict
ledger_entry_parent_object_id_form_dict = ledger_entry_parent_object_id.from_dict(ledger_entry_parent_object_id_dict)

[Back to Model list] [Back to API list] [Back to README]