A file attachment on a Jira issue.

interface JiraAttachment {
    author?: JiraUser;
    content: string;
    created: string;
    filename: string;
    id: string;
    mimeType: string;
    self: string;
    size: number;
    thumbnail?: string;
}

Properties

author?: JiraUser

User who uploaded the attachment

content: string

URL to download the attachment content

created: string

ISO 8601 date the attachment was created

filename: string

Original file name

id: string

Numeric string ID

mimeType: string

MIME type

self: string

URL of the attachment resource

size: number

File size in bytes

thumbnail?: string

URL to the thumbnail (images only)