1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
{
"continents": [
"Europe",
"North America",
"Testcontinent"
],
"recovery_state": "COUNTRY_SELECTING",
"selected_continent": "Testcontinent",
"countries": [
{
"code": "xx",
"name": "Testland",
"continent": "Testcontinent",
"continent_i18n": {
"xx": "Testkontinent"
},
"name_i18n": {
"de_DE": "Testlandt",
"de_CH": "Testlandi",
"fr": "Testpais",
"en": "Testland"
},
"currency": "TESTKUDOS"
},
{
"code": "xy",
"name": "Demoland",
"continent": "Testcontinent",
"continent_i18n": {
"xx": "Testkontinent"
},
"name_i18n": {
"de_DE": "Demolandt",
"de_CH": "Demolandi",
"fr": "Demopais",
"en": "Demoland"
},
"currency": "KUDOS"
}
]
}
|