nylas
    Preparing search index...

    Interface Attachment

    Interface of an attachment object from Nylas.

    interface Attachment {
        contentDisposition?: string;
        contentId?: string;
        contentType: string;
        filename: string;
        grantId: string;
        id: string;
        isInline?: boolean;
        size?: number;
    }

    Hierarchy

    • BaseAttachment
      • Attachment
    Index

    Properties

    contentDisposition?: string

    Content disposition of the attachment.

    contentId?: string

    Content ID of the attachment.

    contentType: string

    Attachment's content type.

    filename: string

    Attachment's name.

    grantId: string

    Grant ID of the Nylas account.

    id: string

    Attachment's ID.

    isInline?: boolean

    If it's an inline attachment.

    size?: number

    Attachment's size in bytes.