Returns the current document ID and status
Name | Type | Description | Notes |
---|---|---|---|
id | str | The unique ID for this document | [optional] |
status | str | Status of the document | [optional] |
events | List[StatusEvent] | [optional] |
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)