In the app I'm working on I have an event handler. I know there is "name" and "value", are there any others that are passed that are specific to Hubitat?
I try to reference documentation too, however in the linked page there is no reference to displayName, device, or date.
I keep running into this problem every time I try and do something with a language that is new to me, especially anything that is open source. The documentation is incomplete and only marginally useful.
I actually abandoned a development project for addons to a game because their API documentation was Doxygen generated and they didn't add any useful information to it to make things more clear as to what was going on.
Its pretty confusing at first but its a groovy (or java?) thing. The documentation gives you what you need you just need to understand how it works in the language.
Referencing evt.displayName is the same as evt.getDisplayName which you will see the methods for at the bottom. I think they are called getter and setter methods. So looking at the methods at the bottom will usually give you want you need.