From c344d7a607f4ed78f7562b718cbcba61d958d4f0 Mon Sep 17 00:00:00 2001 From: 650elx Date: Wed, 20 Mar 2024 01:33:43 +0100 Subject: [PATCH] feat(Voice): mode type hints added --- sinch/domains/voice/models/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sinch/domains/voice/models/__init__.py b/sinch/domains/voice/models/__init__.py index 20e461b..dc15940 100644 --- a/sinch/domains/voice/models/__init__.py +++ b/sinch/domains/voice/models/__init__.py @@ -30,6 +30,6 @@ class Destination(TypedDict): class ConferenceDTMFOptions(TypedDict): - mode: str + mode: Literal["ignore", "forward", "detect"] max_digits: int timeout_mills: int