Source code for maec.package.malware_subject_reference

# MAEC Malware Subject Reference Class

# Copyright (c) 2018, The MITRE Corporation
# All rights reserved

from mixbox import fields

import maec
from . import _namespace
import maec.bindings.maec_package as package_binding

[docs]class MalwareSubjectReference(maec.Entity): _binding = package_binding _binding_class = package_binding.MalwareSubjectReferenceType _namespace = _namespace malware_subject_idref = fields.TypedField("malware_subject_idref") def __init__(self, malware_subject_idref = None): super(MalwareSubjectReference, self).__init__() self.malware_subject_idref = malware_subject_idref