The following syntax doesn't pass the validation check.
var suggestionItem = new Domain.SuggestItem {Text: "", Description: "", Icon: ""};
Mamba does not yet support object initializers. You should assign each property.
Domain.SuggestItem item;
item.Text = ""
etc