// Generated Source import MakeRingOutCallerInfoRequestFrom from "./MakeRingOutCallerInfoRequestFrom"; import MakeRingOutCallerInfoRequestTo from "./MakeRingOutCallerInfoRequestTo"; import MakeRingOutCoutryInfo from "./MakeRingOutCoutryInfo"; interface MakeRingOutRequest { /** * Phone number of the caller. This number corresponds to the 1st leg of the RingOut call. This number can be one of user's configured forwarding numbers or arbitrary number */ from?: MakeRingOutCallerInfoRequestFrom; /** * Phone number of the called party. This number corresponds to the 2nd leg of the RingOut call */ to?: MakeRingOutCallerInfoRequestTo; /** * The number which will be displayed to the called party */ callerId?: MakeRingOutCallerInfoRequestTo; /** * The audio prompt that the calling party hears when the call is connected */ playPrompt?: boolean; /** * Optional. Dialing plan country data. If not specified, then extension home country is applied by default */ country?: MakeRingOutCoutryInfo; } export default MakeRingOutRequest;