Saxonberg Server API
    Preparing search index...

    Interface BulletinRow

    The client-facing projection of one bulletin (the news-ticker row). The server owns all semantics (ordering, pin-cap, expiry, soft-retract) — a retracted bulletin is never projected to the client. MML headline / body render through the existing parse path; the client owns zero ordering/recognition semantics.

    interface BulletinRow {
        author?: string;
        body: string;
        bulletinId: string;
        expiresAt?: number;
        headline: string;
        kind: BulletinKind;
        pinned: boolean;
        publishedAt: number;
        realm: BulletinRealm;
    }
    Index

    Properties

    author?: string

    The publisher's durable identity string, when present.

    body: string
    bulletinId: string
    expiresAt?: number

    Expiry, epoch-ms; absent / 0 = never expires.

    headline: string
    kind: BulletinKind
    pinned: boolean
    publishedAt: number

    Publish time, epoch-ms.

    realm: BulletinRealm