@ken-all/kenall
    Preparing search index...

    Interface NTACorporateInfoSearcherResponse

    An NTACorporateInfoSearcherResponse describes a response to searchNTACorporateInfo API call.

    interface NTACorporateInfoSearcherResponse {
        count: number;
        data: v20250101.NTACorporateInfo[];
        facets: v20250101.NTACorporateInfoFacets | null;
        limit: number;
        offset: number;
        query: string;
        version: string;
    }
    Index

    Properties

    count: number

    The number of the resulting items in total.

    The set of the data that match to the query.

    The facets of the result that form with the query.

    If no facet is given, those will be unavailable and this stores null.

    limit: number

    The number of items that have been intended, at most, to retrieve from the result.

    offset: number

    The offset from which the result has been retrieved.

    query: string

    The query that the search has been performed for.

    version: string

    The version of the data, in the form of "YYYY-MM-DD" where Y, M, and D represent digits of the year, month, and day the source data became available.