nylas
    Preparing search index...

    Interface ListNotetakersResponse

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

    interface ListNotetakersResponse {
        data: Notetaker[];
        flowId?: string;
        headers?: Record<string, string>;
        nextCursor?: string;
        prevCursor?: string;
        rawHeaders?: Record<string, string>;
        requestId: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    data: Notetaker[]

    The list of requested data objects.

    flowId?: string

    The flow ID Provide this to Nylas support to help trace requests and responses

    headers?: Record<string, string>

    The response headers with camelCased keys (backwards compatible)

    Use rawHeaders instead

    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.

    rawHeaders?: Record<string, string>

    The raw response headers with original dashed lowercase keys

    requestId: string

    The request ID.