Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.46 KB

RootFolderResource.md

File metadata and controls

39 lines (30 loc) · 1.46 KB

RootFolderResource

Properties

Name Type Description Notes
id int [optional]
name str [optional]
path str [optional]
default_metadata_profile_id int [optional]
default_quality_profile_id int [optional]
default_monitor_option MonitorTypes [optional]
default_new_item_monitor_option NewItemMonitorTypes [optional]
default_tags List[int] [optional]
accessible bool [optional]
free_space int [optional]
total_space int [optional]

Example

from lidarr.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]