Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.36 KB

ArchiveDocument.md

File metadata and controls

34 lines (25 loc) · 1.36 KB

ArchiveDocument

Properties

Name Type Description Notes
id int Archive document id [optional]
var_date date Archive document date [optional]
description str Archive Document description [optional]
attachment_url str [Temporary] [Read Only] Archive Document url of the attached file [optional] [readonly]
category str Archive document category [optional]
attachment_token str [Write Only] [Required] Archive document attachment token returned by POST /archive/attachment [optional]

Example

from fattureincloud_python_sdk.models.archive_document import ArchiveDocument

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

# convert the object into a dict
archive_document_dict = archive_document_instance.to_dict()
# create an instance of ArchiveDocument from a dict
archive_document_from_dict = ArchiveDocument.from_dict(archive_document_dict)

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