Skip to content

Latest commit

History

History
32 lines (23 loc) · 1.11 KB

File metadata and controls

32 lines (23 loc) · 1.11 KB

DocumentVersion

Properties

NameTypeDescriptionNotes
version_idstrVersion identifier (hash).[optional]
namestrVersion name.[optional]
personDocumentUser[optional]
created_atstrCreation timestamp (Y-m-d H:i:s).[optional]

Example

frompdf_generator_api_client.models.document_versionimportDocumentVersion# TODO update the JSON string belowjson="{}"# create an instance of DocumentVersion from a JSON stringdocument_version_instance=DocumentVersion.from_json(json)
# print the JSON string representation of the objectprint(DocumentVersion.to_json())
# convert the object into a dictdocument_version_dict=document_version_instance.to_dict()
# create an instance of DocumentVersion from a dictdocument_version_from_dict=DocumentVersion.from_dict(document_version_dict)

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