Jira.js - Jira Cloud API library
    Preparing search index...

    Interface AttachmentMetadata

    Metadata for an issue attachment.

    interface AttachmentMetadata {
        author?: Version3Models.User;
        content?: string;
        created?: string;
        filename?: string;
        id?: number;
        mediaApiFileId?: string;
        mimeType?: string;
        properties?: {};
        self?: string;
        size?: number;
        thumbnail?: string;
    }
    Index

    Properties

    content?: string

    The URL of the attachment.

    created?: string

    The datetime the attachment was created.

    filename?: string

    The name of the attachment file.

    id?: number

    The ID of the attachment.

    mediaApiFileId?: string

    File ID of the attachment in Media Store. See for more details on the Media API.

    mimeType?: string

    The MIME type of the attachment.

    properties?: {}

    Additional properties of the attachment.

    self?: string

    The URL of the attachment metadata details.

    size?: number

    The size of the attachment.

    thumbnail?: string

    The URL of a thumbnail representing the attachment.