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

    Interface UpdateRelatedWork

    Associated related work to a version

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

    Hierarchy (View Summary)

    Index

    Properties

    category: string

    The category of the related work

    id: string

    The ID of the version to update the related work on. For the related work id, pass it to the input JSON.

    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.