/// <summary>
 /// Updates the authenticating user's settings.
 /// </summary>
 /// <param name="oAuth"></param>
 /// <param name="trend_location_woeid">The Yahoo! Where On Earth ID to use as the user's default trend location. Global information is available by using 1 as the WOEID.</param>
 /// <param name="sleep_time_enabled">When set to true, t or 1, will enable sleep time for the user.</param>
 /// <param name="start_sleep_time">The hour that sleep time should begin if it is enabled.</param>
 /// <param name="end_sleep_time">The hour that sleep time should end if it is enabled.</param>
 /// <param name="time_zone">The timezone dates and times should be displayed in for the user.</param>
 /// <param name="lang">The language which Twitter should render in for this user. </param>
 /// <returns></returns>
 public JArray PostAccount_Settings(oAuthTwitter oAuth, string trend_location_woeid, string sleep_time_enabled, string start_sleep_time, string end_sleep_time, string time_zone, string lang)
 {
     Users objUser = new Users();
     JArray jarrUser = new JArray();
     jarrUser = objUser.Post_Account_Settings(oAuth,trend_location_woeid,sleep_time_enabled,start_sleep_time,end_sleep_time,time_zone,lang);
     return jarrUser;
 }