diff --git a/src/main/java/com/cryptlex/lexactivator/FeatureEntitlement.java b/src/main/java/com/cryptlex/lexactivator/FeatureEntitlement.java index 5517177..952ec9e 100644 --- a/src/main/java/com/cryptlex/lexactivator/FeatureEntitlement.java +++ b/src/main/java/com/cryptlex/lexactivator/FeatureEntitlement.java @@ -15,5 +15,10 @@ public class FeatureEntitlement { * The value of the feature. */ public String value; + + /** + * Timestamp when the license feature entitlement will expire. + */ + public long expiresAt; } diff --git a/src/main/java/com/cryptlex/lexactivator/UserLicense.java b/src/main/java/com/cryptlex/lexactivator/UserLicense.java index 15e4df7..77ff3de 100644 --- a/src/main/java/com/cryptlex/lexactivator/UserLicense.java +++ b/src/main/java/com/cryptlex/lexactivator/UserLicense.java @@ -18,6 +18,16 @@ public class UserLicense { */ public String key; + /** + * Total number of activations for the license. + */ + public long totalActivations; + + /** + * Total number of deactivations for the license. + */ + public long totalDeactivations; + /** * The license type (node-locked or hosted-floating). */