A list of ``Potential_COA`` objects, defaults to empty array
| 111 | |
| 112 | |
| 113 | class PotentialCOAs(GenericRelationshipList): |
| 114 | """ |
| 115 | A list of ``Potential_COA`` objects, defaults to empty array |
| 116 | """ |
| 117 | _namespace = "http://docs.oasis-open.org/cti/ns/stix/exploit-target-1" |
| 118 | _binding = exploit_target_binding |
| 119 | _binding_class = exploit_target_binding.PotentialCOAsType |
| 120 | |
| 121 | potential_coa = fields.TypedField("Potential_COA", RelatedCOA, multiple=True, key_name="coas") |
| 122 | |
| 123 | def __init__(self, coas=None, scope=None): |
| 124 | super(PotentialCOAs, self).__init__(scope, coas) |
| 125 | |
| 126 | |
| 127 | class RelatedExploitTargets(GenericRelationshipList): |