import { Ipv4 } from '../Ipv4';
import { CarrierSipEndpointProtocolEnum } from './CarrierSipEndpointProtocolEnum';
/** Carrier SIP Endpoints */
export interface CarrierSipCustomerEndpoint {
    /** Should we send incoming calls to this endpoint */
    enableIncomingCalls: boolean;
    /** SIP Endpoint id */
    id: number;
    /** SIP Endpoint IP */
    ip: Ipv4;
    /** SIP Endpoint port */
    port: number;
    /** SIP Endpoint priority (DNS SRV) */
    priority: number;
    /** The protocol of the endpoint (udp/tcp/tls) */
    protocol: CarrierSipEndpointProtocolEnum;
    /** SIP Endpoint weight (DNS SRV) */
    weight: number;
}
//# sourceMappingURL=CarrierSipCustomerEndpoint.d.ts.map