| 93 | |
| 94 | |
| 95 | class ThreatActors(stix.EntityList): |
| 96 | _binding = stix_core_binding |
| 97 | _namespace = 'http://docs.oasis-open.org/cti/ns/stix/core-1' |
| 98 | _binding_class = _binding.ThreatActorsType |
| 99 | |
| 100 | threat_actor = fields.TypedField( |
| 101 | name="Threat_Actor", |
| 102 | type_=ThreatActor, |
| 103 | multiple=True, |
| 104 | listfunc=partial(IdrefDeprecatedList, type=ThreatActor) |
| 105 | ) |
| 106 | |
| 107 | |
| 108 | class Reports(stix.EntityList): |
no outgoing calls
no test coverage detected