Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.1 KB

SetDocumentVersionRequest.md

File metadata and controls

29 lines (20 loc) · 1.1 KB

SetDocumentVersionRequest

Properties

Name Type Description Notes
version_key str VersionKey returned by the GET /documents/{documentId}/versions to revert to [optional]

Example

from formkiq_client.models.set_document_version_request import SetDocumentVersionRequest

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

# convert the object into a dict
set_document_version_request_dict = set_document_version_request_instance.to_dict()
# create an instance of SetDocumentVersionRequest from a dict
set_document_version_request_from_dict = SetDocumentVersionRequest.from_dict(set_document_version_request_dict)

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