Add MIXED type to FrameSerializerType enum

This commit is contained in:
Mark Backman
2025-12-18 22:32:30 -05:00
parent 5e94b20562
commit 186f76db46

View File

@@ -18,10 +18,12 @@ class FrameSerializerType(Enum):
Parameters:
BINARY: Binary serialization format for compact representation.
TEXT: Text-based serialization format for human-readable output.
MIXED: Mixed format supporting both binary and text messages (e.g., Vonage).
"""
BINARY = "binary"
TEXT = "text"
MIXED = "mixed"
class FrameSerializer(ABC):