A Result consisting of a list of countries.
| name | data type | description |
|---|---|---|
| country | array of country | result list of countries |
| total | number | the total amount of items matching the query |
| page | number | the current page. starts at 1 |
| itemsPerPage | number | the amount of items you get per page |
Example
{
"country" : [ {
"code" : "US",
"name" : "United States"
}, {
"code" : "...",
"name" : "..."
} ],
"total" : 42,
"page" : 1,
"itemsPerPage" : 20
}