I just started working with thrift and created following thrift interface.
map<string, map<string, string>> getInformationByIds(1: set<string> Ids)
As you can see, the return type is a map of maps. I want to know wether I can improve the readability by creating a custom thrift structure. Any direction is appreciated.