1 2 3 4 5 6 7 8 9 10 11 12 13
module TestIceSpider { class SomeModel { string value; }; interface TestApi { SomeModel index(); SomeModel withParams(string s, int i); void returnNothing(string s); void complexParam(optional(0) string s, SomeModel m); }; };