nylas
    Preparing search index...

    Interface ListNotetakersResponse

    Interface representation of a Nylas response object that contains a list of objects.

    interface ListNotetakersResponse {
        data: Notetaker[];
        nextCursor?: string;
        prevCursor?: string;
        requestId: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    data: Notetaker[]

    The list of requested data objects.

    nextCursor?: string

    A cursor pointing to the next page of results for the request.

    prevCursor?: string

    A cursor pointing to the previous page of results for the request.

    requestId: string

    The request ID.