Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.18 KB

DocumentSubmitResponse.md

File metadata and controls

30 lines (21 loc) · 1.18 KB

DocumentSubmitResponse

Returns the unique ID of a successful document submission

Properties

Name Type Description Notes
id str Unique ID for this document that can be used for status checking and file downloads. This is a UID created by the Avalara E-Invoicing platform. [optional]

Example

from Avalara.SDK.models.EInvoicing.V1.document_submit_response import DocumentSubmitResponse

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

# convert the object into a dict
document_submit_response_dict = document_submit_response_instance.to_dict()
# create an instance of DocumentSubmitResponse from a dict
document_submit_response_from_dict = DocumentSubmitResponse.from_dict(document_submit_response_dict)

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