[docs]@inherit_docstringsclassWatcher(Base):""" Class to represent people watching simulations for updates. """NOTIFICATION_CHOICES:Final[Dict[Any,str]]={Notification.VALIDATION:"V",Notification.REVISION:"R",Notification.OBSOLESCENCE:"O",Notification.ALL:"A",}__tablename__="watchers"id=Column(sql_types.Integer,primary_key=True)username=Column(sql_types.String(250))email=Column(sql_types.String(1000),nullable=False)notification=Column(ChoiceType(choices=NOTIFICATION_CHOICES,length=1,enum_type=Notification))