forked from BotBuilderCommunity/botbuilder-community-dotnet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInfobipViberConstants.cs
More file actions
26 lines (24 loc) · 834 Bytes
/
InfobipViberConstants.cs
File metadata and controls
26 lines (24 loc) · 834 Bytes
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
namespace Bot.Builder.Community.Adapters.Infobip.Viber
{
public class InfobipViberConstants
{
public const string ChannelName = "infobip-viber";
}
public static class InfobipViberMessageContentTypes
{
public const string Message = "application/vhd.infobip.viber-message";
}
public static class InfobipViberOptions
{
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";
}
}
}