We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2653cec + eda0f8a commit dd4c212Copy full SHA for dd4c212
com.unity.mobile.notifications/Runtime/iOS/iOSNotificationSettings.cs
@@ -14,11 +14,19 @@ public enum AuthorizationStatus
14
/// <summary>
15
/// The application is not authorized to post notifications.
16
/// </summary>
17
- Denied,
+ Denied = 1,
18
19
/// The application is authorized to post notifications.
20
21
- Authorized
+ Authorized = 2,
22
+ /// <summary>
23
+ /// The application is authorized to post non-interruptive user notifications.
24
+ /// </summary>
25
+ Provisional = 3,
26
27
+ /// The application is temporarily authorized to post notifications. Only available to app clips.
28
29
+ Ephemeral = 4,
30
}
31
32
0 commit comments