Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 982 Bytes

File metadata and controls

30 lines (22 loc) · 982 Bytes

UpdateFile

The parameters for updating a file.

Properties

Name Type Description Notes
title str The file title to update. [optional]
last_version int The number of the latest file version. [optional]

Example

from docspace_api_sdk.models.update_file import UpdateFile

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

# convert the object into a dict
update_file_dict = update_file_instance.to_dict()
# create an instance of UpdateFile from a dict
update_file_from_dict = UpdateFile.from_dict(update_file_dict)

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