Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.22 KB

File metadata and controls

33 lines (24 loc) · 1.22 KB

CreateFolder200Response

Properties

Name Type Description Notes
team_id UUID Team API ID [optional]
name str Name [optional]
parent_id UUID Parent Folder API ID (if any) [optional]
parent_name str Parent Folder name (if any) [optional]
color str Color of folder [optional]

Example

from urlr.models.create_folder200_response import CreateFolder200Response

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

# convert the object into a dict
create_folder200_response_dict = create_folder200_response_instance.to_dict()
# create an instance of CreateFolder200Response from a dict
create_folder200_response_from_dict = CreateFolder200Response.from_dict(create_folder200_response_dict)

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