Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 962 Bytes

UnmappedFolder.md

File metadata and controls

31 lines (22 loc) · 962 Bytes

UnmappedFolder

Properties

Name Type Description Notes
name str [optional]
path str [optional]
relative_path str [optional]

Example

from sonarr.models.unmapped_folder import UnmappedFolder

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

# convert the object into a dict
unmapped_folder_dict = unmapped_folder_instance.to_dict()
# create an instance of UnmappedFolder from a dict
unmapped_folder_from_dict = UnmappedFolder.from_dict(unmapped_folder_dict)

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