Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.12 KB

RootFolderResource.md

File metadata and controls

33 lines (24 loc) · 1.12 KB

RootFolderResource

Properties

Name Type Description Notes
id int [optional]
path str [optional]
accessible bool [optional]
free_space int [optional]
unmapped_folders List[UnmappedFolder] [optional]

Example

from sonarr.models.root_folder_resource import RootFolderResource

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

# convert the object into a dict
root_folder_resource_dict = root_folder_resource_instance.to_dict()
# create an instance of RootFolderResource from a dict
root_folder_resource_from_dict = RootFolderResource.from_dict(root_folder_resource_dict)

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