Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.08 KB

File metadata and controls

31 lines (22 loc) · 1.08 KB

DocumentAncestor

An object representing related documents to another document.

Properties

Name Type Description Notes
id int Unique identifier of the related document. [optional]
invoice_number str Invoice number of the related document. [optional]

Example

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)

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