| 106 | |
| 107 | |
| 108 | class Reports(stix.EntityList): |
| 109 | _binding = stix_core_binding |
| 110 | _namespace = 'http://docs.oasis-open.org/cti/ns/stix/core-1' |
| 111 | _binding_class = _binding.ReportsType |
| 112 | |
| 113 | report = fields.TypedField( |
| 114 | name="Report", |
| 115 | type_=Report, |
| 116 | multiple=True, |
| 117 | listfunc=partial(IdrefDeprecatedList, type=Report) |
| 118 | ) |
| 119 | |
| 120 | |
| 121 | # Namespace flattening |
no outgoing calls
no test coverage detected