@archastro/sdk
    Preparing search index...

    Interface EffectiveAccessEntitlement

    A billing-derived effective entitlement for the authenticated user.

    interface EffectiveAccessEntitlement {
        granted: boolean;
        key: string;
        provided_by: ("personal" | "organization")[];
        value?: boolean | null;
        value_type: "boolean";
    }
    Index

    Properties

    granted: boolean

    Whether any eligible source grants the key.

    key: string

    Stable entitlement catalog key.

    provided_by: ("personal" | "organization")[]

    Privacy-safe principal kinds that contribute to the effective value.

    value?: boolean | null

    Merged entitlement value, or null when the key is not granted.

    value_type: "boolean"

    Catalog type used to interpret value.