Source code for LOGS.Entities.LabNotebookEntryContent.BasicAttribute
from typing import Optional
from LOGS.Entity.SerializeableContent import SerializeableContent
[docs]
class BasicAttribute(SerializeableContent):
_id: Optional[str] = None
@property
def id(self) -> Optional[str]:
return self._id
@id.setter
def id(self, value):
self._id = self.checkAndConvertNullable(value, str, "id")