| 67 | |
| 68 | |
| 69 | class Incidents(stix.EntityList): |
| 70 | _binding = stix_core_binding |
| 71 | _namespace = 'http://docs.oasis-open.org/cti/ns/stix/core-1' |
| 72 | _binding_class = _binding.IncidentsType |
| 73 | |
| 74 | incident = fields.TypedField( |
| 75 | name="Incident", |
| 76 | type_=Incident, |
| 77 | multiple=True, |
| 78 | listfunc=partial(IdrefDeprecatedList, type=Incident) |
| 79 | ) |
| 80 | |
| 81 | |
| 82 | class Indicators(stix.EntityList): |
no outgoing calls
no test coverage detected