Get Model Name in a DTH

I am attempting to get the device’s model name in a DTH, however everything I have tried throws an error. Is there any way to get this information in ST? getModelName() works perfectly in a SmartApp.

Forgive me if this has been solved years ago, I cannot find an answer with a forum search.

My DTH code failures
if (device.getModelName()==‘something’)
if (device.mode.model==‘something’)

This should work for a Zigbee device device.getDataValue("model")

3 Likes

Thank you for the fast and accurate response. That worked!

2 Likes