/** * This file was auto-generated by Fern from our API Definition. */ /** * Jira Board object */ export interface JiraBoard { /** Board name */ name: string; /** Board type (scrum or kanban) */ type?: string; /** Key of the project this board belongs to (for initialization) */ project_key?: string; /** JQL for the board filter */ filter_jql?: string; }