| 122 | |
| 123 | |
| 124 | class KillChainPhasesReference(stix.EntityList): |
| 125 | _binding = common_binding |
| 126 | _namespace = 'http://docs.oasis-open.org/cti/ns/stix/common-1' |
| 127 | _binding_class = _binding.KillChainPhasesReferenceType |
| 128 | |
| 129 | kill_chain_phase = fields.TypedField( |
| 130 | name="Kill_Chain_Phase", |
| 131 | type_=KillChainPhaseReference, |
| 132 | multiple=True, |
| 133 | listfunc=_KillChainPhaseReferenceList, |
| 134 | key_name="kill_chain_phases" |
| 135 | ) |
| 136 | |
| 137 | @classmethod |
| 138 | def _dict_as_list(cls): |
| 139 | return False |
| 140 | |
| 141 | |
| 142 | # NOT AN ACTUAL STIX TYPE! |
no outgoing calls