MCPcopy Create free account
hub / github.com/STIXProject/python-stix / __init__

Method __init__

stix/coa/__init__.py:75–88  ·  view source on GitHub ↗
(self, id_=None, idref=None, timestamp=None, title=None,
                 description=None, short_description=None)

Source from the content-addressed store, hash-verified

73 information_source = fields.TypedField("Information_Source", InformationSource)
74
75 def __init__(self, id_=None, idref=None, timestamp=None, title=None,
76 description=None, short_description=None):
77
78 super(CourseOfAction, self).__init__(
79 id_=id_,
80 idref=idref,
81 timestamp=timestamp,
82 title=title,
83 description=description,
84 short_description=short_description
85 )
86
87 self.related_coas = RelatedCOAs()
88 self.related_packages = RelatedPackageRefs()
89
90# alias for CourseOfAction
91COA = CourseOfAction

Callers

nothing calls this directly

Calls 2

RelatedPackageRefsClass · 0.90
RelatedCOAsClass · 0.85

Tested by

no test coverage detected