Skip to content

Commit

Permalink
feat(SVAML): Indications enum added
Browse files Browse the repository at this point in the history
  • Loading branch information
650elx committed Mar 20, 2024
1 parent c344d7a commit e0d0a98
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions sinch/domains/voice/models/svaml/actions/actions.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,52 @@
from enum import Enum
from dataclasses import dataclass
from typing import Optional, List, TypedDict
from sinch.core.models.base_model import SinchRequestBaseModel
from sinch.domains.voice import Destination, ConferenceDTMFOptions


class Indications(Enum):
AUSTRIA = "at"
AUSTRALIA = "au"
BULGARIA = "bg"
BRAZIL = "br"
BELGIUM = "be"
SWITZERLAND = "ch"
CHILE = "cl"
CHINA = "cn"
CZECH_REPUBLIC = "cz"
GERMANY = "de"
DENMARK = "dk"
ESTONIA = "ee"
SPAIN = "es"
FINLAND = "fi"
FRANCE = "fr"
GREECE = "gr"
HUNGARY = "hu"
ISRAEL = "il"
INDIA = "in"
ITALY = "it"
LITHUANIA = "lt"
JAPAN = "jp"
MEXICO = "mx"
MALAYSIA = "my"
NETHERLANDS = "nl"
NORWAY = "no"
NEW_ZEALAND = "nz"
PHILIPPINES = "ph"
POLAND = "pl"
PORTUGAL = "pt"
RUSSIA = "ru"
SWEDEN = "se"
SINGAPORE = "sg"
THAILAND = "th"
UNITED_KINGDOM = "uk"
UNITED_STATES = "us"
TAIWAN = "tw"
VENEZUELA = "ve"
SOUTH_AFRICA = "za"


class AnsweringMachineDetection(TypedDict):
enabled: bool

Expand Down

0 comments on commit e0d0a98

Please sign in to comment.