import CountryResource from "./CountryResource"; interface DialInNumberResource { /** * */ phoneNumber?: string; /** * */ formattedNumber?: string; /** * */ location?: string; /** * */ country?: CountryResource; } export default DialInNumberResource;