Confluence.js - Cloud and Server API library
    Preparing search index...

    Interface UpdateAttachmentData

    interface UpdateAttachmentData {
        attachment: {
            comment?: string;
            contentType?: string;
            file: string | Blob | File | ReadableStream<any> | Buffer<ArrayBufferLike>;
            filename: string;
            minorEdit: boolean;
        };
        attachmentId: string;
        id: string;
    }
    Index

    Properties

    attachment: {
        comment?: string;
        contentType?: string;
        file: string | Blob | File | ReadableStream<any> | Buffer<ArrayBufferLike>;
        filename: string;
        minorEdit: boolean;
    }

    Attachment data to update.

    attachmentId: string

    The ID of the attachment to update.

    id: string

    The ID of the content that the attachment is attached to.