Details about a board.

interface Board {
    admins?: BoardAdminsBean;
    canEdit?: boolean;
    favourite?: boolean;
    id?: number;
    isPrivate?: boolean;
    location?: BoardLocationBean;
    name?: string;
    self?: string;
    type?: string;
}

Properties

canEdit?: boolean

Whether the board can be edited.

favourite?: boolean

Whether the board is selected as a favorite.

id?: number

The ID of the board.

isPrivate?: boolean

Whether the board is private.

The container that the board is located in.

name?: string

The name of the board.

self?: string

The URL of the board.

type?: string

The type the board.