An object representing related documents to another document.
| Name | Type | Description | Notes |
|---|---|---|---|
| id | int | Unique identifier of the related document. | [optional] |
| invoice_number | str | Invoice number of the related document. | [optional] |
from clientapi_billingo.models.document_ancestor import DocumentAncestor
# TODO update the JSON string below
json = "{}"
# create an instance of DocumentAncestor from a JSON string
document_ancestor_instance = DocumentAncestor.from_json(json)
# print the JSON string representation of the object
print(DocumentAncestor.to_json())
# convert the object into a dict
document_ancestor_dict = document_ancestor_instance.to_dict()
# create an instance of DocumentAncestor from a dict
document_ancestor_from_dict = DocumentAncestor.from_dict(document_ancestor_dict)