Skip to content

Commit

Permalink
feat(Voice): DTO adapted to the facade changes
Browse files Browse the repository at this point in the history
  • Loading branch information
650elx committed Mar 14, 2024
1 parent 324ddfb commit 29997e9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion sinch/domains/voice/models/callouts/requests.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from dataclasses import dataclass
from typing import Literal
from sinch.core.models.base_model import SinchRequestBaseModel
from sinch.domains.voice.models import Destination, ConferenceDTMFOptions

Expand Down Expand Up @@ -34,7 +35,7 @@ class ConferenceVoiceCalloutRequest(SinchRequestBaseModel):
greeting: str
mohClass: str
custom: str
domain: str
domain: Literal["pstn", "mxp"]


@dataclass
Expand Down

0 comments on commit 29997e9

Please sign in to comment.