WakeOnLanInfo
Provides the MAC address and port for wake-on-LAN functionality.
Properties
Name | Type | Description | Notes |
---|---|---|---|
mac_address | str | Gets the MAC address of the device. | [optional] |
port | int | Gets or sets the wake-on-LAN port. | [optional] |
Example
from jellyfin.generated.api_10_10.models.wake_on_lan_info import WakeOnLanInfo
# TODO update the JSON string below
json = "{}"
# create an instance of WakeOnLanInfo from a JSON string
wake_on_lan_info_instance = WakeOnLanInfo.from_json(json)
# print the JSON string representation of the object
print(WakeOnLanInfo.to_json())
# convert the object into a dict
wake_on_lan_info_dict = wake_on_lan_info_instance.to_dict()
# create an instance of WakeOnLanInfo from a dict
wake_on_lan_info_from_dict = WakeOnLanInfo.from_dict(wake_on_lan_info_dict)