Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 936 Bytes

File metadata and controls

32 lines (23 loc) · 936 Bytes

FileInfo

Properties

Name Type Description Notes
file_name str [optional]
file_size int [optional]
content_type str [optional]
extension str [optional]

Example

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)

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