Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 945 Bytes

File metadata and controls

30 lines (21 loc) · 945 Bytes

SettingFile

Properties

Name Type Description Notes
category FileCategory [optional]
files List[UploadedFile] [optional]

Example

from gridly.models.setting_file import SettingFile

# TODO update the JSON string below
json = "{}"
# create an instance of SettingFile from a JSON string
setting_file_instance = SettingFile.from_json(json)
# print the JSON string representation of the object
print(SettingFile.to_json())

# convert the object into a dict
setting_file_dict = setting_file_instance.to_dict()
# create an instance of SettingFile from a dict
setting_file_from_dict = SettingFile.from_dict(setting_file_dict)

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