OutboundKeepAliveMessage

Keep alive websocket messages.

Properties

Name Type Description Notes
message_id str Gets or sets the message id. [optional]
message_type SessionMessageType [optional]

Example

from jellyfin.generated.api_10_10.models.outbound_keep_alive_message import OutboundKeepAliveMessage

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

# convert the object into a dict
outbound_keep_alive_message_dict = outbound_keep_alive_message_instance.to_dict()
# create an instance of OutboundKeepAliveMessage from a dict
outbound_keep_alive_message_from_dict = OutboundKeepAliveMessage.from_dict(outbound_keep_alive_message_dict)

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