Interface AsukaLicenseResolutionResult

interface AsukaLicenseResolutionResult {
    ok: boolean;
    payload: AsukaLicenseEntitlements;
    resolvedAt: string;
    signatureValid: boolean;
    source:
        | "key"
        | "default"
        | "token"
        | "cache";
}

Properties

ok: boolean
resolvedAt: string
signatureValid: boolean
source:
    | "key"
    | "default"
    | "token"
    | "cache"