import type * as ElevenLabs from "../index"; export interface WorkflowPhoneNumberNodeModelInput { /** Custom SIP headers to include when transferring the call. Each header can be either a static value or a dynamic variable reference. */ customSipHeaders?: ElevenLabs.WorkflowPhoneNumberNodeModelInputCustomSipHeadersItem[]; /** Position of the node in the workflow. */ position?: ElevenLabs.PositionInput; /** The ids of outgoing edges in the order they should be evaluated. */ edgeOrder?: string[]; transferDestination: ElevenLabs.WorkflowPhoneNumberNodeModelInputTransferDestination; transferType?: ElevenLabs.TransferTypeEnum; /** DTMF digits to send after call connects (e.g., 'ww1234' for extension). Can be either a static value or a dynamic variable reference. Use 'w' for 0.5s pause. */ postDialDigits?: ElevenLabs.WorkflowPhoneNumberNodeModelInputPostDialDigits; }