diff --git a/lexactivator/src/main/java/com/cryptlex/android/lexactivator/UserLicense.java b/lexactivator/src/main/java/com/cryptlex/android/lexactivator/UserLicense.java index 4aaaa7c..be72e2e 100644 --- a/lexactivator/src/main/java/com/cryptlex/android/lexactivator/UserLicense.java +++ b/lexactivator/src/main/java/com/cryptlex/android/lexactivator/UserLicense.java @@ -2,11 +2,23 @@ public class UserLicense { - public int allowedActivations; + /** + * The allowed activations of the license. A value of -1 indicates unlimited number of activations. + */ + public long allowedActivations; - public int allowedDeactivations; + /** + * The allowed deactivations of the license. A value of -1 indicates unlimited number of deactivations. + */ + public long allowedDeactivations; + /** + * The license key. + */ public String key; + /** + * The license type (node-locked or hosted-floating). + */ public String type; }