this.stimulate('MyReflex#example')
const { data, element, event } = payload
const { attrs, reflexId } = data
// * attrs - an object that represents the attributes of the element that triggered the reflex
// * data - the data sent from the client to the server over the web socket to invoke the reflex
// * element - the element that triggered the reflex
// * event - the source event
// * reflexId - a unique identifier for this specific reflex invocation
const { data, element, event } = payload
const { attrs, reflexId } = data
const { error } = event.detail.stimulusReflex
// * attrs - an object that represents the attributes of the element that triggered the reflex
// * data - the data sent from the client to the server over the web socket to invoke the reflex
// * element - the element that triggered the reflex
// * error - the error message from the server
// * event - the source event
// * reflexId - a unique identifier for this specific reflex invocation