| 4 | |
| 5 | |
| 6 | class RequirementSchema(ma.Schema): |
| 7 | |
| 8 | module = ma.fields.String() |
| 9 | relationship_match = ma.fields.List(ma.fields.Dict()) |
| 10 | |
| 11 | @ma.post_load() |
| 12 | def build_requirement(self, data, **_): |
| 13 | return Requirement(**data) |
| 14 | |
| 15 | |
| 16 | class Requirement(BaseObject): |
no outgoing calls