| Name | Type | Description | Notes |
|---|---|---|---|
| category | FileCategory | [optional] | |
| files | List[UploadedFile] | [optional] |
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)