-
Notifications
You must be signed in to change notification settings - Fork 178
/
Copy pathRingCentralConstants.cs
39 lines (34 loc) · 1.15 KB
/
RingCentralConstants.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
namespace Bot.Builder.Community.Adapters.RingCentral
{
public static class RingCentralConstants
{
// Webhook validation request from RingCentral will contain this in querystring
public const string HubModeSubscribe = "subscribe";
/// <summary>
/// Any 'event' coming from RingCentral that we want to act upon.
/// </summary>
public enum RingCentralHandledEvent
{
/// <summary>
/// The RingCentral event is unhandled.
/// </summary>
Unknown = 0,
/// <summary>
/// The RingCentral event is a webhook verification check.
/// </summary>
VerifyWebhook = 10,
/// <summary>
/// The RingCentral event is an agent intervention.
/// </summary>
Intervention = 20,
/// <summary>
/// The RingCentral event is content.imported .
/// </summary>
ContentImported = 30,
/// <summary>
/// The RingCentral event is an action
/// </summary>
Action = 40
}
}
}