Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.18 KB

DocumentStatusResponse.md

File metadata and controls

32 lines (23 loc) · 1.18 KB

DocumentStatusResponse

Returns the current document ID and status

Properties

Name Type Description Notes
id str The unique ID for this document [optional]
status str Status of the document [optional]
events List[StatusEvent] [optional]

Example

from Avalara.SDK.models.EInvoicing.V1.document_status_response import DocumentStatusResponse

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

# convert the object into a dict
document_status_response_dict = document_status_response_instance.to_dict()
# create an instance of DocumentStatusResponse from a dict
document_status_response_from_dict = DocumentStatusResponse.from_dict(document_status_response_dict)

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