export declare const LexFloatStatusCodes: { /** * Success code. */ LF_OK: number; /** * Failure code. */ LF_FAIL: number; /** * The product id is incorrect. */ LF_E_PRODUCT_ID: number; /** * Invalid or missing callback function. */ LF_E_CALLBACK: number; /** * Missing or invalid server url. */ LF_E_HOST_URL: number; /** * Ensure system date and time settings are correct. */ LF_E_TIME: number; /** * Failed to connect to the server due to network error. */ LF_E_INET: number; /** * License has not been leased yet. */ LF_E_NO_LICENSE: number; /** * License has already been leased. */ LF_E_LICENSE_EXISTS: number; /** * License does not exist on server or has already expired. This * happens when the request to refresh the license is delayed. */ LF_E_LICENSE_NOT_FOUND: number; /** * License lease has expired due to network error. This * happens when the request to refresh the license fails due to * network error. */ LF_E_LICENSE_EXPIRED_INET: number; /** * The server has reached it's allowed limit of floating licenses. */ LF_E_LICENSE_LIMIT_REACHED: number; /** * The buffer size was smaller than required. */ LF_E_BUFFER_SIZE: number; /** * The metadata key does not exist. */ LF_E_METADATA_KEY_NOT_FOUND: number; /** * Metadata key length is more than 256 characters. */ LF_E_METADATA_KEY_LENGTH: number; /** * Metadata value length is more than 4096 characters. */ LF_E_METADATA_VALUE_LENGTH: number; /** * The floating client has reached it's metadata fields limit. */ LF_E_FLOATING_CLIENT_METADATA_LIMIT: number; /** * The meter attribute does not exist. */ LF_E_METER_ATTRIBUTE_NOT_FOUND: number; /** * The meter attribute has reached it's usage limit. */ LF_E_METER_ATTRIBUTE_USES_LIMIT_REACHED: number; /** * No product version is linked with the license. */ LF_E_PRODUCT_VERSION_NOT_LINKED: number; /** * The product version feature flag does not exist. */ LF_E_FEATURE_FLAG_NOT_FOUND: number; /** * Insufficient system permissions. */ LF_E_SYSTEM_PERMISSION: number; /** * IP address is not allowed. */ LF_E_IP: number; /** * Invalid permission flag. */ LF_E_INVALID_PERMISSION_FLAG: number; /** * Offline floating license is not allowed for per-instance leasing strategy. */ LF_E_OFFLINE_FLOATING_LICENSE_NOT_ALLOWED: number; /** * Maximum offline lease duration exeeded. */ LF_E_MAX_OFFLINE_LEASE_DURATION_EXCEEDED: number; /** * Allowed offline floating clients limit reached. */ LF_E_ALLOWED_OFFLINE_FLOATING_CLIENTS_LIMIT_REACHED: number; /** * Fingerprint couldn't be generated because Windows Management Instrumentation (WMI) service has been disabled. * This error is specific to Windows only. */ LF_E_WMIC: number; /** * Machine fingerprint has changed since activation. */ LF_E_MACHINE_FINGERPRINT: number; /** * Request blocked due to untrusted proxy. */ LF_E_PROXY_NOT_TRUSTED: number; /** * No entitlement set is linked to the license. */ LF_E_ENTITLEMENT_SET_NOT_LINKED: number; /** * The feature entitlement does not exist. */ LF_E_FEATURE_ENTITLEMENT_NOT_FOUND: number; /** * Client error. */ LF_E_CLIENT: number; /** * Server error. */ LF_E_SERVER: number; /** * System time on server has been tampered with. Ensure * your date and time settings are correct on the server machine. */ LF_E_SERVER_TIME_MODIFIED: number; /** * The server has not been activated using a license key. */ LF_E_SERVER_LICENSE_NOT_ACTIVATED: number; /** * The server license has expired. */ LF_E_SERVER_LICENSE_EXPIRED: number; /** * The server license has been suspended. */ LF_E_SERVER_LICENSE_SUSPENDED: number; /** * The grace period for server license is over. */ LF_E_SERVER_LICENSE_GRACE_PERIOD_OVER: number; /** * Requested offline lease duration exceeds server license expiry date. */ LF_E_LEASE_EXCEEDS_SERVER_LICENSE_EXPIRY: number; }; //# sourceMappingURL=lexfloatstatus-codes.d.ts.map