How do I insert the either on or off part of the event into the rest_command ? I currently have two commands but I want to insert the on/off even so I only need one command. Here are my two commands : ```
rest_command:
office_tronbyt_octoprint_app_disable:
url: "http://192.168.1.10:8000/v0/devices/9abe2858/installations/649"
method: put
content_type: "application/json"
payload: "{"set_enabled":false}"
headers:
Authorization: CHANGEME
officce_tronbyt_octoprint_app_enable:
url: "http://192.168.1.10:8000/v0/devices/9abe2858/installations/649"
method: put
content_type: "application/json"
payload: "{"set_enabled":true}"
headers:
Authorization: CHANGEME