// Generated Source interface GetCountryInfoConferencing { /** * Internal identifier of a country */ id?: string; /** * Canonical URI of a country */ uri?: string; /** * Country calling code defined by ITU-T recommendations E.123 and E.164, see Calling Codes */ callingCode?: string; /** * Emergency calling feature availability/emergency address requirement indicator */ emergencyCalling?: boolean; /** * Country code according to the ISO standard, see ISO 3166 */ isoCode?: string; /** * Official name of a country */ name?: string; } export default GetCountryInfoConferencing;