/// <summary>
 /// Gets information about the user with the specified <code>username</code>.
 /// </summary>
 /// <param name="username">The username of the user.</param>
 public BitBucketGetUserResponse GetInfo(string username)
 {
     return(BitBucketGetUserResponse.ParseResponse(Raw.GetInfo(username)));
 }
 /// <summary>
 /// Gets information about the authenticated user.
 /// </summary>
 /// <returns>Returns an instance of <see cref="BitBucketGetUserResponse"/> representing the response.</returns>
 public BitBucketGetUserResponse GetInfo()
 {
     return(BitBucketGetUserResponse.ParseResponse(Raw.GetInfo()));
 }