| 287 | |
| 288 | |
| 289 | class LeveragedTTPs(GenericRelationshipList): |
| 290 | _namespace = "http://docs.oasis-open.org/cti/ns/stix/incident-1" |
| 291 | _binding = incident_binding |
| 292 | _binding_class = _binding.LeveragedTTPsType |
| 293 | |
| 294 | ttp = fields.TypedField( |
| 295 | name="Leveraged_TTP", |
| 296 | type_=RelatedTTP, |
| 297 | multiple=True, |
| 298 | key_name="ttps" |
| 299 | ) |
| 300 | |
| 301 | |
| 302 | class RelatedIncidents(GenericRelationshipList): |