public Lists.Create.Result Create(String name) { var cm = new Lists.Create.Command(); cm.name = name; return this.Create(cm); }
public Lists.Create.Result Create(String name, String mode, String description) { var cm = new Lists.Create.Command(); cm.name = name; cm.mode = mode; cm.description = description; return this.Create(cm); }
public Lists.Create.Result[] Create(Lists.Create.Command command) { return(_ApiEndpoints._Client.GetResult <Lists.Create.Command, Lists.Create.Result[]>(command)); }