Example #1
0
 public Users.Suggestions.Result[] Suggestions()
 {
     var cm = new Users.Suggestions.Command();
     return this.Suggestions(cm);
 }
Example #2
0
 public Users.Suggestions.Result[] Suggestions(String lang)
 {
     var cm = new Users.Suggestions.Command();
     cm.lang = lang;
     return this.Suggestions(cm);
 }
Example #3
0
 public Users.Suggestions.Result[] Suggestions(Users.Suggestions.Command command)
 {
     return(_ApiEndpoints._Client.GetResult <Users.Suggestions.Command, Users.Suggestions.Result[]>(command));
 }