BaseItemDtoImageBlurHashes
Gets or sets the blurhashes for the image tags. Maps image type to dictionary mapping image tag to blurhash value.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| primary | Dict[str, str] | [optional] | |
| art | Dict[str, str] | [optional] | |
| backdrop | Dict[str, str] | [optional] | |
| banner | Dict[str, str] | [optional] | |
| logo | Dict[str, str] | [optional] | |
| thumb | Dict[str, str] | [optional] | |
| disc | Dict[str, str] | [optional] | |
| box | Dict[str, str] | [optional] | |
| screenshot | Dict[str, str] | [optional] | |
| menu | Dict[str, str] | [optional] | |
| chapter | Dict[str, str] | [optional] | |
| box_rear | Dict[str, str] | [optional] | |
| profile | Dict[str, str] | [optional] |
Example
from jellyfin.generated.api_10_10.models.base_item_dto_image_blur_hashes import BaseItemDtoImageBlurHashes
# TODO update the JSON string below
json = "{}"
# create an instance of BaseItemDtoImageBlurHashes from a JSON string
base_item_dto_image_blur_hashes_instance = BaseItemDtoImageBlurHashes.from_json(json)
# print the JSON string representation of the object
print(BaseItemDtoImageBlurHashes.to_json())
# convert the object into a dict
base_item_dto_image_blur_hashes_dict = base_item_dto_image_blur_hashes_instance.to_dict()
# create an instance of BaseItemDtoImageBlurHashes from a dict
base_item_dto_image_blur_hashes_from_dict = BaseItemDtoImageBlurHashes.from_dict(base_item_dto_image_blur_hashes_dict)