@nycu-sdc/core-system-sdk
    Preparing search index...

    Interface InboxInboxFormMessage

    The structure of a full inbox message.

    interface InboxInboxFormMessage {
        contentId: string;
        createdAt: string;
        id: string;
        org: string;
        postedBy: string;
        previewMessage: string;
        title: string;
        type: InboxInboxFormMessageType;
        unit: string;
        updatedAt: string;
    }
    Index

    Properties

    contentId: string

    The identifier of the content referenced by the contentType.

    createdAt: string

    The create timestamp of the inbox message.

    id: string

    The unique identifier of an inbox message.

    org: string

    The organization display name of the sender.

    postedBy: string

    The sender's unitId. If not specified, defaults to the uuid referring to a unit with the organization's name.

    previewMessage: string

    Preview text. For forms: uses form.previewMessage if set, otherwise first 25 chars of form.description. For text: uses provided preview message if set, otherwise first 25 chars of content.

    title: string

    The title of the inbox message.

    The type of the content.

    unit: string

    The unit display name of the sender.

    updatedAt: string

    The last updated timestamp of the inbox message.