nylas
    Preparing search index...

    Interface AgentList

    Interface representing a Nylas Agent Account list.

    interface AgentList {
        applicationId?: string;
        createdAt?: number;
        description?: string;
        id: string;
        itemsCount?: number;
        name: string;
        organizationId?: string;
        type: AgentListType;
        updatedAt?: number;
    }
    Index

    Properties

    applicationId?: string

    The ID of the application that owns the list.

    createdAt?: number

    Unix timestamp when the list was created.

    description?: string

    Optional description of the list's purpose.

    id: string

    Globally unique identifier for the list.

    itemsCount?: number

    Number of items currently in the list.

    name: string

    Human-readable name for the list.

    organizationId?: string

    The ID of the Nylas organization that owns the list.

    The kind of values the list holds.

    updatedAt?: number

    Unix timestamp when the list was last updated.