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

    Interface InboxUserInboxMessage

    The structure of a user inbox message.

    interface InboxUserInboxMessage {
        id: string;
        isArchived: boolean;
        isRead: boolean;
        isStarred: boolean;
        message: InboxInboxFormMessage;
    }
    Index

    Properties

    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.