A page of changelogs which is designed to handle multiple issues

interface BulkChangelogResponseBean {
    issueChangeLogs?: IssueChangeLog[];
    nextPageToken?: string;
}

Properties

issueChangeLogs?: IssueChangeLog[]

The list of issues changelogs.

nextPageToken?: string

Continuation token to fetch the next page. If this result represents the last or the only page, this token will be null.