package core // Phone represents a phone number of interest. type Phone struct { Number string `json:"number"` CountryCode string `json:"country_code"` Carrier string `json:"carrier"` PhoneType string `json:"phone_type"` }