@sudoplatform/sudo-entitlements-admin
    Preparing search index...

    Interface EntitlementConsumption

    Entitlement consumption information

    interface EntitlementConsumption {
        available: number;
        consumed: number;
        consumer?: EntitlementConsumer;
        firstConsumedAtEpochMs?: number;
        lastConsumedAtEpochMs?: number;
        name: string;
        value: number;
    }
    Index

    Properties

    available: number

    Remaining amount of entitlement

    consumed: number

    Consumed amount of entitlement

    Consumer to whom this record pertains. If not present, consumption is at the user level.

    firstConsumedAtEpochMs?: number

    The time at which this entitlement was first consumed

    lastConsumedAtEpochMs?: number

    The most recent time at which this entitlement was consumed

    name: string

    Name of the entitlement

    value: number

    Value of the entitlement.