Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.16 KB

File metadata and controls

30 lines (21 loc) · 1.16 KB

FetchDocumentsRequestDataInner

Properties

Name Type Description Notes
key str Descriptor of the identifier
value str Value of the identifier

Example

from Avalara.SDK.models.EInvoicing.V1.fetch_documents_request_data_inner import FetchDocumentsRequestDataInner

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

# convert the object into a dict
fetch_documents_request_data_inner_dict = fetch_documents_request_data_inner_instance.to_dict()
# create an instance of FetchDocumentsRequestDataInner from a dict
fetch_documents_request_data_inner_from_dict = FetchDocumentsRequestDataInner.from_dict(fetch_documents_request_data_inner_dict)

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