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

    Interface InboxUserInboxMessageDetail

    The deatil structure of a user inbox message with content.

    interface InboxUserInboxMessageDetail {
        content?: FormsForm;
        id: string;
        isArchived: boolean;
        isRead: boolean;
        isStarred: boolean;
        message: InboxInboxFormMessage;
    }
    Index

    Properties

    content?: FormsForm

    The full content of inbox_message.

    id: string

    The id of this UserInboxMessage.

    isArchived: boolean

    User can archive the inbox message and hide it from the inbox view.

    isRead: boolean

    Indicates whether the user has read the inbox message.

    isStarred: boolean

    User can mark the inbox message as starred.

    The inbox message this user inbox message refers to.