DOIP Client Library - JavaScript Version
    Preparing search index...

    Interface Bucket

    Interface representing a facet results bucket.

    interface Bucket {
        value: string;
        count: number;
        filterQuery: string;
    }
    Index

    Properties

    value: string

    The facet value for this bucket.

    count: number

    The number of items that have this facet value.

    filterQuery: string

    A query string that can be used to filter to just items with this facet value.