A list of ``RelatedExploitTargets`` objects, defaults to empty array
| 125 | |
| 126 | |
| 127 | class RelatedExploitTargets(GenericRelationshipList): |
| 128 | """ |
| 129 | A list of ``RelatedExploitTargets`` objects, defaults to empty array |
| 130 | """ |
| 131 | _namespace = "http://docs.oasis-open.org/cti/ns/stix/exploit-target-1" |
| 132 | _binding = exploit_target_binding |
| 133 | _binding_class = exploit_target_binding.RelatedExploitTargetsType |
| 134 | |
| 135 | related_exploit_target = fields.TypedField("Related_Exploit_Target", RelatedExploitTarget, multiple=True, key_name="related_exploit_targets") |
| 136 | |
| 137 | def __init__(self, related_exploit_targets=None, scope=None): |
| 138 | super(RelatedExploitTargets, self).__init__(scope, related_exploit_targets) |