import type * as ElevenLabs from "../index"; export interface InboundSipTrunkConfigRequestModel { /** List of IP addresses that are allowed to use the trunk. Each item in the list can be an individual IP address or a Classless Inter-Domain Routing notation representing a CIDR block. */ allowedAddresses?: string[]; /** List of phone numbers that are allowed to use the trunk. */ allowedNumbers?: string[]; /** Whether or not to encrypt media (data layer). */ mediaEncryption?: ElevenLabs.SipMediaEncryptionEnum; /** Optional digest authentication credentials (username/password). */ credentials?: ElevenLabs.SipTrunkCredentialsRequestModel; /** Domains of remote SIP servers used to validate TLS certificates. */ remoteDomains?: string[]; }