| Name |
Type |
Description |
Notes |
| name |
str |
|
|
from gridly.models.create_file_category import CreateFileCategory
# TODO update the JSON string below
json = "{}"
# create an instance of CreateFileCategory from a JSON string
create_file_category_instance = CreateFileCategory.from_json(json)
# print the JSON string representation of the object
print(CreateFileCategory.to_json())
# convert the object into a dict
create_file_category_dict = create_file_category_instance.to_dict()
# create an instance of CreateFileCategory from a dict
create_file_category_from_dict = CreateFileCategory.from_dict(create_file_category_dict)
[Back to Model list] [Back to API list] [Back to README]