class Incident: def __init__(self, incident_id, description): self.incident_id = incident_id self.description = description def get_incident_id(self): return self.incident_id