The FilterResult is the set of extensions that matched a particular query filter.

interface ExtensionFilterResult {
    extensions?: PublishedExtension[];
    pagingToken?: string;
    resultMetadata?: ExtensionFilterResultMetadata[];
}

Properties

extensions?: PublishedExtension[]

This is the set of applications that matched the query filter supplied.

pagingToken?: string

The PagingToken is returned from a request when more records exist that match the result than were requested or could be returned. A follow-up query with this paging token can be used to retrieve more results.

This is the additional optional metadata for the given result. E.g. Total count of results which is useful in case of paged results