The parameters for updating a file.
| Name | Type | Description | Notes |
|---|---|---|---|
| title | str | The file title to update. | [optional] |
| last_version | int | The number of the latest file version. | [optional] |
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)