| 28 | |
| 29 | |
| 30 | class Campaigns(stix.EntityList): |
| 31 | _binding = stix_core_binding |
| 32 | _namespace = 'http://docs.oasis-open.org/cti/ns/stix/core-1' |
| 33 | _binding_class = _binding.CampaignsType |
| 34 | |
| 35 | campaign = fields.TypedField( |
| 36 | name="Campaign", |
| 37 | type_=Campaign, |
| 38 | multiple=True, |
| 39 | listfunc=partial(IdrefDeprecatedList, type=Campaign) |
| 40 | ) |
| 41 | |
| 42 | |
| 43 | class CoursesOfAction(stix.EntityList): |
no outgoing calls
no test coverage detected