CountryList
List of countries CountryList
export interface CountryList {
'countries'?: Array<Country>;
}Properties
| Name | Required | Type | Description |
|---|---|---|---|
countries | Optional | Array<Country> | This is the list of Country fields that should be returned in the response body {Array<Country>} CountryList |