xxxxxxxxxx
var myInt interface{}
myInt = 8
toInt, ok := myInt.(int)
fmt.Println(toInt, ok) // 8 true
toString, ok := myInt.(string)
fmt.Println(toString, ok) // "" false
xxxxxxxxxx
iAreaId := val.(int)
iAreaId, ok := val.(int) // Alt. non panicking version