A single changelog history entry representing a set of changes made at one point in time.

interface JiraChangelogEntry {
    author: JiraUser;
    created: string;
    id: string;
    items: JiraChangelogItem[];
}

Properties

Properties

author: JiraUser

User who made the changes

created: string

ISO 8601 date the change was made

id: string

Numeric string ID of this history entry

The list of individual field changes