| 231 | item = fields.TypedField("Incident", type_="stix.incident.Incident") |
| 232 | |
| 233 | class RelatedIndicator(_BaseRelated): |
| 234 | _namespace = "http://docs.oasis-open.org/cti/ns/stix/common-1" |
| 235 | _binding = common_binding |
| 236 | _binding_class = common_binding.RelatedIndicatorType |
| 237 | |
| 238 | # _BaseRelated requires an "item" field. |
| 239 | item = fields.TypedField("Indicator", type_="stix.indicator.Indicator") |
| 240 | |
| 241 | |
| 242 | class RelatedObservable(_BaseRelated): |
no outgoing calls