public Account.Settings_Post.Result Settings_Post() { var cm = new Account.Settings_Post.Command(); return this.Settings_Post(cm); }
public Account.Settings_Post.Result Settings_Post(String trend_location_woeid, Boolean? sleep_time_enabled, String start_sleep_time, String end_sleep_time, String time_zone, String lang) { var cm = new Account.Settings_Post.Command(); cm.trend_location_woeid = trend_location_woeid; cm.sleep_time_enabled = sleep_time_enabled; cm.start_sleep_time = start_sleep_time; cm.end_sleep_time = end_sleep_time; cm.time_zone = time_zone; cm.lang = lang; return this.Settings_Post(cm); }
public Account.Settings_Post.Result[] Settings_Post(Account.Settings_Post.Command command) { return(_ApiEndpoints._Client.GetResult <Account.Settings_Post.Command, Account.Settings_Post.Result[]>(command)); }