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

    Interface EntitlementsSequence

    Definition of a sequence of entitlements sets through which a user will transition

    interface EntitlementsSequence {
        createdAt: Date;
        description?: string;
        name: string;
        transitions: EntitlementsSequenceTransition[];
        updatedAt: Date;
        version: number;
    }
    Index

    Properties

    createdAt: Date

    Time at which the entitlements sequence was originally created

    description?: string

    Description, if any, of the entitlements sequence as specified by the entitlements administrator.

    name: string

    Name of this entitlements sequence.

    The sequence of transitions a user will go through in order.

    updatedAt: Date

    Time at which the entitlements sequence was most recently updated.

    version: number

    Version number of the entitlements sequence. This is incremented every time there is a change to this entitlements sequence.