Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/jira/src/agile/models/board.ts>Board

A JavaScript/TypeScript wrapper for the JIRA Cloud, Service Desk and Agile REST API
Latest
interface Board
import { type Board } from "https://deno.land/x/jira@v3.0.2/src/agile/models/board.ts";

Details about a board.

Properties

optional
id: number

The ID of the board.

optional
self: string

The URL of the board.

optional
name: string

The name of the board.

optional
type: string

The type the board.

optional
admins: { users?: { self?: string; displayName?: string; active?: boolean; accountId?: string; avatarUrls?: { 24x24?: string; 32x32?: string; 48x48?: string; 16x16?: string; }; }[]; groups?: { name?: string; self?: string; }[]; }

The users and groups who own the board.

optional
location: { projectId?: number; userId?: number; userAccountId?: string; displayName?: string; projectName?: string; projectKey?: string; projectTypeKey?: string; avatarURI?: string; name?: string; }

The container that the board is located in.

optional
canEdit: boolean

Whether the board can be edited.

optional
isPrivate: boolean

Whether the board is private.

optional
favourite: boolean

Whether the board is selected as a favorite.