Key value pairs of metadata for a document submission
{ "workflowId": "partner-einvoicing", "dataFormat": "ubl-invoice", "dataFormatVersion": "2.1", "countryCode": "SA", "countryMandate": "SA-Phase1-B2B" }
Name | Type | Description | Notes |
---|---|---|---|
workflow_id | str | Specifies a unique ID for this workflow. | |
data_format | str | Specifies the data format for this workflow. | |
data_format_version | str | Specifies the data format version number. | |
country_code | str | The two-letter ISO-3166 country code for the country where the document is being submitted | |
country_mandate | str | The e-invoicing mandate for the specified country. |
from Avalara.SDK.models.EInvoicing.V1.submit_document_metadata import SubmitDocumentMetadata
# TODO update the JSON string below
json = "{}"
# create an instance of SubmitDocumentMetadata from a JSON string
submit_document_metadata_instance = SubmitDocumentMetadata.from_json(json)
# print the JSON string representation of the object
print(SubmitDocumentMetadata.to_json())
# convert the object into a dict
submit_document_metadata_dict = submit_document_metadata_instance.to_dict()
# create an instance of SubmitDocumentMetadata from a dict
submit_document_metadata_from_dict = SubmitDocumentMetadata.from_dict(submit_document_metadata_dict)