-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNotifLevel.proto
More file actions
18 lines (15 loc) · 808 Bytes
/
NotifLevel.proto
File metadata and controls
18 lines (15 loc) · 808 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
syntax = "proto3";
package e2ees;
option java_package = "org.e2eelab.proto.e2ees";
option java_outer_classname = "NotifLevelProto";
option objc_class_prefix = "Objc";
option swift_prefix = "Swift";
/**
* The notification level used to identify the urgency of a msg.
*/
enum NotifLevel {
NOTIF_LEVEL_NORMAL = 0; // The notification level indicates that server will not send push notification to device.
NOTIF_LEVEL_SESSION = 1; // The notification level indicates that server will forward msg for establishing session.
NOTIF_LEVEL_PUSH = 11; // The notification level indicates that server will send push notification to device.
NOTIF_LEVEL_STREAM = 12; // The notification level indicates that server will send push notification with streaming flags to device.
}