CupThread React Native & Expo SDK - v0.1.0
    Preparing search index...

    Interface BoardColumn

    Column definition on the public Kanban roadmap board.

    const column: BoardColumn = {
    id: 'col_123',
    appId: 'app_abc',
    name: 'In Progress',
    slug: 'in-progress',
    position: 2,
    isVisible: true,
    isSystem: false,
    kind: 'normal',
    color: '#3b82f6',
    createdAt: '2026-01-01T00:00:00.000Z',
    updatedAt: '2026-01-15T00:00:00.000Z',
    };
    interface BoardColumn {
        appId: string;
        color?: string | null;
        createdAt: string;
        id: string;
        isSystem: boolean;
        isVisible: boolean;
        kind: BoardColumnKind;
        name: string;
        position: number;
        slug: string;
        updatedAt: string;
    }
    Index
    appId: string

    Application ID that owns this column.

    color?: string | null

    Optional custom hex or CSS color representing this stage.

    createdAt: string

    ISO 8601 creation timestamp.

    id: string

    Unique column ID.

    isSystem: boolean

    Whether this is a default system column created on app initialization.

    isVisible: boolean

    Whether this column is visible to end users.

    Semantic classification of the column stage.

    name: string

    Column display title (e.g., "Under Consideration", "In Progress").

    position: number

    Display sorting order position index.

    slug: string

    URL and identifier slug (e.g., "in-progress").

    updatedAt: string

    ISO 8601 last update timestamp.