LibraryChangedMessage

Library changed message.

Properties

Name Type Description Notes
data LibraryUpdateInfo Class LibraryUpdateInfo. [optional]
message_id str Gets or sets the message id. [optional]
message_type SessionMessageType The different kinds of messages that are used in the WebSocket api. [optional] [readonly] [default to SessionMessageType.LIBRARYCHANGED]

Example

from jellyfin.generated.api_10_11.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)

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