Shippex.Address.common_country_name

You're seeing just the function common_country_name, go back to Shippex.Address module for more information.
Link to this function

common_country_name(code)

View Source

Specs

common_country_name(String.t()) :: String.t()

Returns a common country name for the given country code. This removes occurrences of "(the)" that may be present in the ISO-3166-2 data. For example, the code "US" normally maps to "United States of America (the)". We can shorten this with:

iex> Address.common_country_name("US")
"United States"