edgeport - v1.0.3
    Preparing search index...

    Interface LdapEntry

    A single search result: a distinguished name and its attribute values.

    interface LdapEntry {
        attributes: Record<string, string[]>;
        dn: string;
    }
    Index
    attributes: Record<string, string[]>

    Attribute values keyed by attribute description; values decoded as UTF-8.

    dn: string

    The entry's distinguished name.