mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2025-01-13 10:31:03 +01:00
67e5bc0434
Based on a proposal by @danielegobbetti, thanks! This still does not enable the feature since the necessary blobdb is not filled yet
18 lines
380 B
Java
18 lines
380 B
Java
package nodomain.freeyourgadget.gadgetbridge.deviceevents;
|
|
|
|
public class GBDeviceEventNotificationControl extends GBDeviceEvent {
|
|
public int handle;
|
|
public String phoneNumber;
|
|
public String reply;
|
|
public Event event = Event.UNKNOWN;
|
|
|
|
public enum Event {
|
|
UNKNOWN,
|
|
DISMISS,
|
|
DISMISS_ALL,
|
|
OPEN,
|
|
MUTE,
|
|
REPLY,
|
|
}
|
|
}
|