License information.

interface LicenseInformation {
    expirationDate: Long;
    instanceId: string;
    instanceName: string;
    isValid: boolean;
    licenseKey: string;
    productId: string;
    productName: string;
    productVersion: string;
}

Properties

expirationDate: Long

Expiration date as unix time is in seconds.

instanceId: string

The instance identifier.

instanceName: string

The instance name.

isValid: boolean

A flag indicating if the license is valid.

licenseKey: string

The license key.

productId: string

The product identifier.

productName: string

The product name.

productVersion: string

The product version.