Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 902 Bytes

FileInfo.md

File metadata and controls

30 lines (21 loc) · 902 Bytes

FileInfo

Properties

Name Type Description Notes
type str Type of the source [optional] [default to 'sketch']
details FileSource

Example

from openapi_client.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]