PluginInstallationCancelledMessage
Plugin installation cancelled message.
Properties
Name | Type | Description | Notes |
---|---|---|---|
data | InstallationInfo | [optional] | |
message_id | str | Gets or sets the message id. | [optional] |
message_type | SessionMessageType | [optional] |
Example
from jellyfin.generated.api_10_10.models.plugin_installation_cancelled_message import PluginInstallationCancelledMessage
# TODO update the JSON string below
json = "{}"
# create an instance of PluginInstallationCancelledMessage from a JSON string
plugin_installation_cancelled_message_instance = PluginInstallationCancelledMessage.from_json(json)
# print the JSON string representation of the object
print(PluginInstallationCancelledMessage.to_json())
# convert the object into a dict
plugin_installation_cancelled_message_dict = plugin_installation_cancelled_message_instance.to_dict()
# create an instance of PluginInstallationCancelledMessage from a dict
plugin_installation_cancelled_message_from_dict = PluginInstallationCancelledMessage.from_dict(plugin_installation_cancelled_message_dict)