| 80 | |
| 81 | |
| 82 | class Indicators(stix.EntityList): |
| 83 | _binding = stix_core_binding |
| 84 | _namespace = 'http://docs.oasis-open.org/cti/ns/stix/core-1' |
| 85 | _binding_class = _binding.IndicatorsType |
| 86 | |
| 87 | indicator = fields.TypedField( |
| 88 | name="Indicator", |
| 89 | type_=Indicator, |
| 90 | multiple=True, |
| 91 | listfunc=partial(IdrefDeprecatedList, type=Indicator) |
| 92 | ) |
| 93 | |
| 94 | |
| 95 | class ThreatActors(stix.EntityList): |
no outgoing calls
no test coverage detected