Type Alias LicenseStatus

{
* extensionStatus: "Unavailable",
* origin: "Internal",
* product: "Qlik Sense Business",
* status: "Ok",
* trial: false,
* type: "Signed",
* valid: "2018-01-01/2018-12-31"
* }
type LicenseStatus = {
    deactivated: boolean;
    extensionStatus: "Unavailable" | "Pending" | "Available";
    origin: "Internal" | "External";
    product: string;
    status: "Ok" | "Blacklisted" | "Expired" | "Missing";
    trial: boolean;
    type: "Signed" | "Plain" | "2.0";
    valid: string;
}
Index

Properties

deactivated: boolean

Boolean indicating if the license is deactivated.

extensionStatus: "Unavailable" | "Pending" | "Available"

Enum with extension status of license. access.

origin: "Internal" | "External"

Origin of license key.

product: string

The product the license is valid for.

status: "Ok" | "Blacklisted" | "Expired" | "Missing"

Enum with status of license. Only status Ok grants license. access.

trial: boolean

Boolean indicating if it is a trial license.

type: "Signed" | "Plain" | "2.0"

Type of license key.

valid: string

Period that the license is currently set to be active. Represented as an ISO 8601 time interval with start and end.