@jody.albritton and @Jim - request your inputs here please.
According to the documentation
http://docs.smartthings.com/en/latest/ref-docs/device-handler-ref.html#attribute
Attribute can be string, number or enum. So define a type number according to the documentation one must use
attribute “myCustomAttribute”, “number”
So in the DH I use this to defined a customer attribute:
attribute “someEvent”, “number”
And I assigned a value using:
sendEvent(name: “someEvent”, value: now(), descriptionText: “$device.displayName event”, displayed: true, isStateChange: true)
However in the SmartApp when subscribing to someEvent
I try to do this operation
new Date(evt.value)
it throws an exception and the reason I figured out was that the “in” operator shows evt.value is to type “String” and NOT “long” or “int” (i.e. not a number)
So is the documentation incorrect or am I using this incorrectly or is it a bug in the platform implementation?