botas-core
    Preparing search index...

    Interface Attachment

    A file or card attachment on an activity.

    interface Attachment {
        contentType: string;
        contentUrl?: string;
        content?: unknown;
        name?: string;
        thumbnailUrl?: string;
    }
    Index

    Properties

    contentType: string

    MIME type of the attachment content.

    contentUrl?: string

    URL to retrieve the attachment content.

    content?: unknown

    Embedded content (e.g. an Adaptive Card JSON object).

    name?: string

    Filename or display name.

    thumbnailUrl?: string

    URL to a thumbnail image.