| Name | Type | Description | Notes |
|---|---|---|---|
| file_name | str | [optional] | |
| file_size | int | [optional] | |
| content_type | str | [optional] | |
| extension | str | [optional] |
from boldsign.models.file_info import FileInfo
# TODO update the JSON string below
json = "{}"
# create an instance of FileInfo from a JSON string
file_info_instance = FileInfo.from_json(json)
# print the JSON string representation of the object
print(FileInfo.to_json())
# convert the object into a dict
file_info_dict = file_info_instance.to_dict()
# create an instance of FileInfo from a dict
file_info_from_dict = FileInfo.from_dict(file_info_dict)