Example #1
0
 public Lists.Create.Result Create(String name)
 {
     var cm = new Lists.Create.Command();
     cm.name = name;
     return this.Create(cm);
 }
Example #2
0
 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);
 }
Example #3
0
 public Lists.Create.Result[] Create(Lists.Create.Command command)
 {
     return(_ApiEndpoints._Client.GetResult <Lists.Create.Command, Lists.Create.Result[]>(command));
 }