Interface representing the parameters for the NotionDBLoader class. It includes the database ID, Notion integration token, Notion API version, and page size limit.

interface NotionDBLoaderParams {
    databaseId: string;
    notionApiVersion?: string;
    notionIntegrationToken?: string;
    pageSizeLimit?: number;
}

Implemented by

Properties

databaseId: string
notionApiVersion?: string
notionIntegrationToken?: string
pageSizeLimit?: number

Generated using TypeDoc