A Group of advisories that have been merged together based on their content and identifiers.
| 4013 | |
| 4014 | |
| 4015 | class Group(NamedTuple): |
| 4016 | """ |
| 4017 | A Group of advisories that have been merged together based on their content and identifiers. |
| 4018 | """ |
| 4019 | |
| 4020 | aliases: Set[AdvisoryAlias] |
| 4021 | primary: AdvisoryV2 |
| 4022 | secondaries: List[AdvisoryV2] |
| 4023 | |
| 4024 | |
| 4025 | class GroupedAdvisory(NamedTuple): |
no outgoing calls