Skip to content

Instantly share code, notes, and snippets.

@scottbyrns
Created August 14, 2014 05:59
Show Gist options
  • Save scottbyrns/e961068bde5b5e0368cb to your computer and use it in GitHub Desktop.
Save scottbyrns/e961068bde5b5e0368cb to your computer and use it in GitHub Desktop.
class CloudMessage {
public Message message;
public String robotId;
public String propertyId;
Message getMessage() {
return message;
}
void setMessage(Message message) {
this.message = message;
}
String getRobotId() {
return robotId;
}
void setRobotId(String robotId) {
this.robotId = robotId;
}
String getPropertyId() {
return propertyId;
}
void setPropertyId(String propertyId) {
this.propertyId = propertyId;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment