Skip to content

v0.2.54..v0.2.55 changeset Users.java

Garret Voltz edited this page Aug 14, 2020 · 1 revision
diff --git a/hoot-services/src/main/java/hoot/services/models/db/Users.java b/hoot-services/src/main/java/hoot/services/models/db/Users.java
index 68c507e..9db838e 100644
--- a/hoot-services/src/main/java/hoot/services/models/db/Users.java
+++ b/hoot-services/src/main/java/hoot/services/models/db/Users.java
@@ -22,7 +22,7 @@
  * This will properly maintain the copyright information. DigitalGlobe
  * copyrights will be updated automatically.
  *
- * @copyright Copyright (C) 2016, 2018, 2019 DigitalGlobe (http://www.digitalglobe.com/)
+ * @copyright Copyright (C) 2016, 2018, 2019, 2020 DigitalGlobe (http://www.digitalglobe.com/)
  */
 package hoot.services.models.db;
 
@@ -75,6 +75,8 @@ public class Users {
 
     private Object privileges;
 
+    public Object favoriteOpts;
+
     @JsonProperty(value = "display_name")
     public String getDisplayName() {
         return displayName;
@@ -167,6 +169,15 @@ public class Users {
         this.privileges = privileges;
     }
 
+    @JsonProperty(value = "members")
+    public Object getFavoriteOpts() {
+    	return favoriteOpts;
+    }
+
+    public void setFavoriteOpts( Object favoriteOpts ) {
+    	this.favoriteOpts = favoriteOpts;
+    }
+
     @Override
     public String toString() {
         return this.displayName + "//" + this.id;
Clone this wiki locally