I know that when a module changes, the UpdateTime field is updated. But, if I create my own parameter (a timer for example), do I need to set the UpdateTime field manually or does this get updated by HG? For example,
Modules.WithFeature(SMART_LIGHT_ENABLE).Each((light_mod)=>
{
light_mod.Parameter(TIMER_ON).Value="TRUE";
light_mod.Parameter(TIMER_ON).UpdateTime=DateTime.UtcNow;
});
Do I really need to have the second line to set the TIMER_ON UpdateTime? It doesn't seem to update on its own.