(self, id_=None, idref=None, timestamp=None, title=None,
description=None, short_description=None)
| 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 |
| 91 | COA = CourseOfAction |
nothing calls this directly
no test coverage detected