| 24 | |
| 25 | |
| 26 | class RelatedCOAs(GenericRelationshipList): |
| 27 | _namespace = "http://docs.oasis-open.org/cti/ns/stix/course-of-action-1" |
| 28 | _binding = coa_binding |
| 29 | _binding_class = coa_binding.RelatedCOAsType |
| 30 | |
| 31 | related_coa = fields.TypedField( |
| 32 | name="Related_COA", |
| 33 | type_=RelatedCOA, |
| 34 | multiple=True, |
| 35 | key_name="coas" |
| 36 | ) |
| 37 | |
| 38 | |
| 39 | class CourseOfAction(stix.BaseCoreComponent): |