/// <summary>
 /// Sets values that users are able to set under the "Account" tab of their settings page. 
 /// </summary>
 /// <param name="oAuth"></param>
 /// <param name="name">Full name associated with the profile. Maximum of 20 characters.</param>
 /// <param name="url">URL associated with the profile. Will be prepended with "http://" if not present. </param>
 /// <param name="location">The city or country describing where the user of the account is located.</param>
 /// <param name="description">A description of the user owning the account. Maximum of 160 characters.</param>
 /// <param name="include_entities">The entities node will not be included when set to false.</param>
 /// <param name="skip_status">When set to either true, t or 1 statuses will not be included in the returned user objects.</param>
 /// <returns></returns>
 public JArray PostAccount_Update_Profile(oAuthTwitter oAuth, string name, string url, string location, string description, bool include_entities, bool skip_status)
 {
     Users objUser = new Users();
     JArray jarrUser = new JArray();
     jarrUser = objUser.Post_Account_Update_Profile(oAuth,name,url,location,description,include_entities,skip_status);
     return jarrUser;
 }