// Generated Source interface ConferencePhoneNumberInfo { /** * Dial-in phone number to connect to a conference */ phoneNumber?: string; /** * 'True' if the number is default for the conference. Default conference number is a domestic number that can be set by user (otherwise it is set by the system). Only one default number per country is allowed */ default?: boolean; } export default ConferencePhoneNumberInfo;