LibraryChangedMessage
Library changed message.
Properties
Name | Type | Description | Notes |
---|---|---|---|
data | LibraryUpdateInfo | [optional] | |
message_id | str | Gets or sets the message id. | [optional] |
message_type | SessionMessageType | [optional] |
Example
from jellyfin.generated.api_10_10.models.library_changed_message import LibraryChangedMessage
# TODO update the JSON string below
json = "{}"
# create an instance of LibraryChangedMessage from a JSON string
library_changed_message_instance = LibraryChangedMessage.from_json(json)
# print the JSON string representation of the object
print(LibraryChangedMessage.to_json())
# convert the object into a dict
library_changed_message_dict = library_changed_message_instance.to_dict()
# create an instance of LibraryChangedMessage from a dict
library_changed_message_from_dict = LibraryChangedMessage.from_dict(library_changed_message_dict)