nylas
    Preparing search index...

    Interface NylasListResponse<T>

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

    interface NylasListResponse<T> {
        data: T[];
        nextCursor?: string;
        requestId: string;
    }

    Type Parameters

    • T

    Hierarchy (View Summary)

    Index

    Properties

    data: T[]

    The list of requested data objects.

    nextCursor?: string

    The cursor to use to get the next page of data.

    requestId: string

    The request ID.