safedispatch-mobile/libSafeMobile/src/main/java/com/safenet/lib/Features.java
2022-03-14 11:53:00 +02:00

27 lines
764 B
Java

package com.safenet.lib;
public class Features {
public long id;
public long version;
public boolean geofence = true;
public boolean landmarks = true;
public boolean textMessaging = true;
public boolean reports = true;
public boolean enhancedReports = false;
public boolean emailGateway = false;
public boolean live = true;
public boolean history = true;
public boolean alerts = false;
public Features(){
}
public String toString()
{
return "id: " + id + " | alerts: " + alerts + " | email: " + emailGateway + " | enRep: " + enhancedReports + " | reports: " + reports +
" | geofence: " + geofence + " | landmark: " + landmarks + " | history: " + history + " | live: " + live + " | text: " + textMessaging;
}
}