botas-core
    Preparing search index...

    Interface PagedMembersResult<T>

    A page of members with an optional continuation token for subsequent pages.

    interface PagedMembersResult<T> {
        members: T[];
        continuationToken?: string;
    }

    Type Parameters

    • T
    Index

    Properties

    members: T[]

    Members on this page.

    continuationToken?: string

    Opaque token to pass on the next call to retrieve the following page.