TimerCreatedMessage

Timer created message.

Properties

Name Type Description Notes
data TimerEventInfo Gets or sets the data. [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.TIMERCREATED]

Example

from jellyfin.generated.api_10_11.models.timer_created_message import TimerCreatedMessage

# TODO update the JSON string below
json = "{}"
# create an instance of TimerCreatedMessage from a JSON string
timer_created_message_instance = TimerCreatedMessage.from_json(json)
# print the JSON string representation of the object
print(TimerCreatedMessage.to_json())

# convert the object into a dict
timer_created_message_dict = timer_created_message_instance.to_dict()
# create an instance of TimerCreatedMessage from a dict
timer_created_message_from_dict = TimerCreatedMessage.from_dict(timer_created_message_dict)

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