Skip to content

Files

Latest commit

author
Jonathan Wenger
Jan 9, 2025
46624f5 · Jan 9, 2025

History

History
43 lines (34 loc) · 2.11 KB

DocumentSummary.md

File metadata and controls

43 lines (34 loc) · 2.11 KB

DocumentSummary

Displays a summary of information about the document

Properties

Name Type Description Notes
id str The unique ID for this document [optional]
process_date_time str The date and time when the document was processed, displayed in the format YYYY-MM-DDThh:mm:ss [optional]
status str The Document status [optional]
supplier_name str The name of the supplier in the transaction [optional]
customer_name str The name of the customer in the transaction [optional]
document_type str The document type [optional]
document_version str The document version [optional]
document_number str The document number [optional]
document_date str The document issue date [optional]
flow str The document direction, where issued = `out` and received = `in` [optional]
country_code str The two-letter ISO-3166 country code for the country where the document is being submitted [optional]
country_mandate str The e-invoicing mandate for the specified country [optional]
interface str The interface where the document is sent [optional]
receiver str The document recipient based on the interface [optional]

Example

from Avalara.SDK.models.EInvoicing.V1.document_summary import DocumentSummary

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

# convert the object into a dict
document_summary_dict = document_summary_instance.to_dict()
# create an instance of DocumentSummary from a dict
document_summary_from_dict = DocumentSummary.from_dict(document_summary_dict)

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