Name | Type | Description | Notes |
---|---|---|---|
type | str | Type of the source | [optional] [default to 'sketch'] |
details | FileSource |
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)