package com.messagebird.objects.conversations; /** * Platforms are communication channels that a conversation can communicate through. */ public class ConversationPlatformConstants { // PlatformSMS identifies the MessageBird SMS platform. public static final String SMS = "sms"; // PlatformWhatsApp identifies the WhatsApp platform. public static final String WHATSAPP = "whatsapp"; // PlatformFacebook identifies the Facebook platform. public static final String FACEBOOK = "facebook"; // PlatformTelegram identifies the Telegram platform. public static final String TELEGRAM = "telegram"; // PlatformLine identifies the LINE platform. public static final String LINE = "line"; // PlatformWeChat identifies the WeChat platform. public static final String WECHAT = "wechat"; // PlatformEmail identifies the Email platform. public static final String EMAIL = "email"; // PlatformEvents identifies the Events platform public static final String EVENTS = "events"; // PlatformWhatsAppSandbox identified the WhatsApp sandbox platform. public static final String WHATSAPP_SANDBOX = "whatsapp_sandbox"; }