com.messagebird.objects.conversations.ConversationPlatformConstants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of messagebird-api Show documentation
Show all versions of messagebird-api Show documentation
The MessageBird API provides a API to the MessageBird SMS and voicemail services located at https://www.messagebird.com.
The newest version!
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";
}