"First commit!"
[smartthings-infrastructure.git] / Event / Event.groovy
1 //Create a class for Events
2 package Event
3
4 public class Event {
5         private int deviceId
6         private String value
7         private String linkText
8         private String displayName
9         private String name
10         private String descriptionText
11         
12         Event() {
13                 this.deviceId = 0
14                 this.linkText = ""
15                 this.value = ""
16                 this.displayName = ""
17                 this.name = ""
18                 this.descriptionText = ""
19         }
20 }