export type LicenseInfo = {
    type: number;
    isValid: boolean;
    message?: string;
    title?: string;
    messageIcon?: number;
    statusCode?: string;
    actionLink?: string;
    actionMessage?: string;
    expiration?: string;
    callToActionMessage?: string;
    callToActionLink?: string;
};
