forked from BotBuilderCommunity/botbuilder-community-dotnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
InfobipSmsConstants.cs
50 lines (46 loc) · 1.75 KB
/
InfobipSmsConstants.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
namespace Bot.Builder.Community.Adapters.Infobip.Sms
{
public class InfobipSmsConstants
{
public const string ChannelName = "infobip-sms";
}
public class InfobipSmsEntityType
{
public const string SmsMessageOptions = "application/vhd.infobip.sms-message-options";
}
public static class InfobipSmsOptions
{
public class ValidityPeriodTimeUnitTypes
{
public const string Nanoseconds = "NANOSECONDS";
public const string Microseconds = "MICROSECONDS";
public const string Miliseconds = "MILLISECONDS";
public const string Seconds = "SECONDS";
public const string Minutes = "MINUTES";
public const string Hours = "HOURS";
public const string Days = "DAYS";
}
public class TransliterationTypes
{
public const string None = "NONE";
public const string All = "ALL";
public const string Baltic = "BALTIC";
public const string CentralEuropean = "CENTRAL_EUROPEAN";
public const string Colombian = "COLOMBIAN";
public const string Cyrillic = "CYRILLIC";
public const string Greek = "GREEK";
public const string NonUnicode = "NON_UNICODE";
public const string Portuguese = "PORTUGUESE";
public const string SerbianCyrillic = "SERBIAN_CYRILLIC";
public const string Turkish = "TURKISH";
}
public class LanguageCode
{
public const string None = "NONE";
public const string Tr = "TR";
public const string Es = "ES";
public const string Pt = "PT";
public const string Autodetect = "AUTODETECT";
}
}
}