Interface IMessageVisibilityHidden

Variant of MessageVisibility for the case in which the message should be hidden.

interface IMessageVisibilityHidden {
    reason: null | string;
    visible: false;
}

Properties

Properties

reason: null | string

Optionally, a human-readable reason to show to the user indicating why the message has been hidden (e.g. "Message Pending Moderation").

visible