| 42 | |
| 43 | @dataclass |
| 44 | class RelationshipConfig: |
| 45 | name: str |
| 46 | service_name: str |
| 47 | foreign_key: str |
| 48 | local_key: str = "id" |
| 49 | service_method: str | None = None |
| 50 | relationship_type: RelationshipType = RelationshipType.HAS_ONE |
| 51 | include_in_response: bool = True |
| 52 | |
| 53 | |
| 54 | @dataclass |
no outgoing calls
no test coverage detected