<@U4CPWAY9L> there are no macro's in kotlin, but y...
# announcements
a
@katz there are no macro's in kotlin, but you can probably do something like
inline fun <reified T> Tof() = object : TypeOf<T>() { }
and then
fun getCities() = request(Tof<ArrayList<CityInfo>>(), "catalogue.Cities")