Difference between revisions of "App Object"

From Hubitat Documentation
Jump to: navigation, search
(Created page with "== installed == This method is called when the app is first installed. '''Signature:''' void installed() == updated == This method is called when the preferences of an in...")
 
Line 1: Line 1:
== installed ==
+
== <code>installed</code> ==
  
 
This method is called when the app is first installed.
 
This method is called when the app is first installed.
Line 6: Line 6:
 
  void installed()
 
  void installed()
  
== updated ==
+
== <code>updated</code> ==
  
 
This method is called when the preferences of an installed app are updated.
 
This method is called when the preferences of an installed app are updated.

Revision as of 19:41, 9 September 2018

installed

This method is called when the app is first installed.

Signature:

void installed()

updated

This method is called when the preferences of an installed app are updated.

Signature:

void updated()