TimerCancelledMessage
Timer cancelled message.
Properties
Name | Type | Description | Notes |
---|---|---|---|
data | TimerEventInfo | [optional] | |
message_id | str | Gets or sets the message id. | [optional] |
message_type | SessionMessageType | [optional] |
Example
from jellyfin.generated.api_10_10.models.timer_cancelled_message import TimerCancelledMessage
# TODO update the JSON string below
json = "{}"
# create an instance of TimerCancelledMessage from a JSON string
timer_cancelled_message_instance = TimerCancelledMessage.from_json(json)
# print the JSON string representation of the object
print(TimerCancelledMessage.to_json())
# convert the object into a dict
timer_cancelled_message_dict = timer_cancelled_message_instance.to_dict()
# create an instance of TimerCancelledMessage from a dict
timer_cancelled_message_from_dict = TimerCancelledMessage.from_dict(timer_cancelled_message_dict)