VirtualFolderInfo
Used to hold information about a user's list of configured virtual folders.
Properties
Name | Type | Description | Notes |
---|---|---|---|
name | str | Gets or sets the name. | [optional] |
locations | List[str] | Gets or sets the locations. | [optional] |
collection_type | CollectionTypeOptions | [optional] | |
library_options | LibraryOptions | [optional] | |
item_id | str | Gets or sets the item identifier. | [optional] |
primary_image_item_id | str | Gets or sets the primary image item identifier. | [optional] |
refresh_progress | float | [optional] | |
refresh_status | str | [optional] |
Example
from jellyfin.generated.api_10_10.models.virtual_folder_info import VirtualFolderInfo
# TODO update the JSON string below
json = "{}"
# create an instance of VirtualFolderInfo from a JSON string
virtual_folder_info_instance = VirtualFolderInfo.from_json(json)
# print the JSON string representation of the object
print(VirtualFolderInfo.to_json())
# convert the object into a dict
virtual_folder_info_dict = virtual_folder_info_instance.to_dict()
# create an instance of VirtualFolderInfo from a dict
virtual_folder_info_from_dict = VirtualFolderInfo.from_dict(virtual_folder_info_dict)