From 4687e20e481fce8b8f919ffc40800f6bcdebf172 Mon Sep 17 00:00:00 2001 From: Huzaif Mushtaq Mir Date: Wed, 17 Dec 2025 11:56:48 +0530 Subject: [PATCH] feat: add expiresAt to featureEntitlements --- cryptlex/lexfloatclient/lexfloatclient.py | 1 + 1 file changed, 1 insertion(+) diff --git a/cryptlex/lexfloatclient/lexfloatclient.py b/cryptlex/lexfloatclient/lexfloatclient.py index 823256c..25ed963 100644 --- a/cryptlex/lexfloatclient/lexfloatclient.py +++ b/cryptlex/lexfloatclient/lexfloatclient.py @@ -49,6 +49,7 @@ def __init__(self, host_feature_entitlement_dict): self.feature_name = host_feature_entitlement_dict.get("featureName") self.feature_display_name = host_feature_entitlement_dict.get("featureDisplayName") self.value = host_feature_entitlement_dict.get("value") + self.expires_at = host_feature_entitlement_dict.get("expiresAt") class HostConfig(object):