| Name |
Type |
Description |
Notes |
| team_id |
UUID |
Team API ID |
|
| name |
str |
Name |
|
| parent_id |
UUID |
Folder API ID (if any) |
[optional] |
| color |
str |
Color of folder |
[optional] |
from urlr.models.create_folder_request import CreateFolderRequest
# TODO update the JSON string below
json = "{}"
# create an instance of CreateFolderRequest from a JSON string
create_folder_request_instance = CreateFolderRequest.from_json(json)
# print the JSON string representation of the object
print(CreateFolderRequest.to_json())
# convert the object into a dict
create_folder_request_dict = create_folder_request_instance.to_dict()
# create an instance of CreateFolderRequest from a dict
create_folder_request_from_dict = CreateFolderRequest.from_dict(create_folder_request_dict)
[Back to Model list] [Back to API list] [Back to README]