interface EstimateIssueForBoard {
    boardId?: number;
    issueIdOrKey: string;
    value?: string;
}

Properties

boardId?: number

The ID of the board required to determine which field is used for estimation.

issueIdOrKey: string

The ID or key of the requested issue.

value?: string