Associated related work to a version

interface VersionRelatedWork {
    category: string;
    issueId?: number;
    relatedWorkId?: string;
    title?: string;
    url?: string;
}

Properties

category: string

The category of the related work

issueId?: number

The ID of the issue associated with the related work (if there is one). Cannot be updated via the Rest API.

relatedWorkId?: string

The id of the related work. For the native release note related work item, this will be null, and Rest API does not support updating it.

title?: string

The title of the related work

url?: string

The URL of the related work. Will be null for the native release note related work item, but is otherwise required.