jmap-kit
    Preparing search index...

    Type Alias EmailParseResponseInvocationArgs

    type EmailParseResponseInvocationArgs = {
        accountId: Id;
        notFound: Id[] | null;
        notParsable: Id[] | null;
        parsed: Record<Id, EmailObject> | null;
    }
    Index

    Properties

    accountId: Id

    The id of the account used for the call.

    notFound: Id[] | null

    A list of blob ids given that could not be found, or null if none.

    notParsable: Id[] | null

    A list of ids given that corresponded to blobs that could not be parsed as Emails, or null if none.

    parsed: Record<Id, EmailObject> | null

    A map of blob id to parsed Email representation for each successfully parsed blob, or null if none.