| 24 | |
| 25 | |
| 26 | class RelationshipUpdateSchema(ma.Schema): |
| 27 | criteria = ma.fields.Nested(RelationshipSchema(partial=True), required=True) |
| 28 | updates = ma.fields.Nested(RelationshipSchema(partial=True), required=True) |
| 29 | |
| 30 | |
| 31 | class Relationship(BaseObject): |
nothing calls this directly
no test coverage detected