Adds an :class:`.Incident` object to the :attr:`incidents` collection.
(self, incident)
| 139 | self.observables.add(observable) |
| 140 | |
| 141 | def add_incident(self, incident): |
| 142 | """Adds an :class:`.Incident` object to the :attr:`incidents` |
| 143 | collection. |
| 144 | |
| 145 | """ |
| 146 | if self.incidents is None: |
| 147 | self.incidents = Incidents() |
| 148 | self.incidents.append(incident) |
| 149 | |
| 150 | def add_threat_actor(self, threat_actor): |
| 151 | """Adds an :class:`.ThreatActor` object to the :attr:`threat_actors` |