@@ -104,6 +104,16 @@ The level of detail displayed in notifications on the lock screen.
104104| ` VISIBILITY_SECRET ` | Do not reveal any part of this notification on a secure lockscreen. |
105105| ` VISIBILITY_PRIVATE ` | Show this notification on all lockscreens, but conceal sensitive or private information on secure lockscreens. |
106106
107+ ### :chicken : NotificationPermission
108+
109+ enum class: Represents the result of a notification permission request.
110+
111+ | value | Description |
112+ | ----------------------| ------------------------------------------------------|
113+ | ` granted ` | Notification permission has been granted. |
114+ | ` denied ` | Notification permission has been denied. |
115+ | ` permanently_denied ` | Notification permission has been permanently denied. |
116+
107117### :chicken : ServiceRequestResult
108118
109119sealed class: Represents the result of a service request.
@@ -113,6 +123,13 @@ sealed class: Represents the result of a service request.
113123| ` ServiceRequestSuccess() ` | The service request was successful. |
114124| ` ServiceRequestFailure(Object error) ` | The service request failed. |
115125
126+ | error | Description |
127+ | ----------------------------------| ----------------------------------------------------------------------------------------------------------------|
128+ | ` ServiceAlreadyStartedException ` | The service has already started. |
129+ | ` ServiceNotInitializedException ` | Not initialized. Please call this function after calling the init function. |
130+ | ` ServiceNotStartedException ` | The service is not started. |
131+ | ` ServiceTimeoutException ` | The service request timed out. (ref: https://developer.android.com/guide/components/services#StartingAService) |
132+
116133### :chicken : TaskStarter
117134
118135The starter that started the task.
0 commit comments