Add back secret with built-in user for o2 service
[pti/o2.git] / o2ims / domain / subscription_obj.py
index 1746ad9..49447d0 100644 (file)
@@ -46,18 +46,18 @@ class Message2SMO(Serializer):
 
 
 class RegistrationMessage(Serializer):
-    def __init__(self, is_all: bool = None, id: str = '') -> None:
-        self.all = is_all if is_all is not None else False
+    def __init__(self, eventtype: NotificationEventEnum, id: str = '') -> None:
+        self.notificationEventType = eventtype
         self.id = id
 
 
 @dataclass
 class EventState():
     Initial = 0
-    NotInstalled = 1
+    NotInstalled = 1
     Installing = 2
     Installed = 3
     Updating = 4
     Uninstalling = 5
     Abnormal = 6
-    Deleted = 7
+    Deleting = 7