/** * Enum for Digital Rich Message types */ export declare enum DigitalMessageContentTypes { /** * Message Type of simple text */ TEXT = "TEXT", /** * Message Type of external link */ RICH_LINK = "RICH_LINK", /** * Message Type of list/options picker */ LIST_PICKER = "LIST_PICKER", /** * Message Type of quick replies */ QUICK_REPLIES = "QUICK_REPLIES", /** * Message Type of date/time picker */ TIME_PICKER = "TIME_PICKER", /** * Message Type of form */ FORM = "FORM", /** * Message Type of reply button */ REPLY_BUTTON = "REPLY_BUTTON", /** * Message type of plugin for inactive patron */ PLUGIN = "PLUGIN", /** * Message type of postback */ POSTBACK = "POSTBACK", /** * Message type of file */ FILE = "FILE", /** * Message type of adaptive card */ ADAPTIVE_CARD = "ADAPTIVE_CARD", /** * Message type of menu */ MENU = "MENU", /** * Message type of text template */ TEXT_TEMPLATE = "TEXT_TEMPLATE" }