(cls, value: bytes)
| 65 | |
| 66 | @classmethod |
| 67 | def decode(cls, value: bytes) -> Any: |
| 68 | raise NotImplementedError |
| 69 | |
| 70 | # (Shared) cache for endpoint return types to Pydantic model fields. |
| 71 | # Note that subclasses share this cache! If a subclass overrides the |
no outgoing calls