/// <summary>
 /// Gets information about the member with the specified <paramref name="memberId"/>.
 /// </summary>
 /// <param name="memberId">The ID of the member.</param>
 /// <returns>An instance of <see cref="MeetupGetMemberResponse"/> representing the response.</returns>
 /// <see>
 ///     <cref>https://www.meetup.com/meetup_api/docs/2/member/#get</cref>
 /// </see>
 public MeetupGetMemberResponse GetMember(int memberId)
 {
     return(MeetupGetMemberResponse.ParseResponse(Raw.GetMember(memberId)));
 }
 /// <summary>
 /// Gets information about the authenticated member/user.
 /// </summary>
 /// <returns>An instance of <see cref="MeetupGetMemberResponse"/> representing the response.</returns>
 /// <see>
 ///     <cref>https://www.meetup.com/meetup_api/docs/2/member/#get</cref>
 /// </see>
 public MeetupGetMemberResponse GetMember()
 {
     return(MeetupGetMemberResponse.ParseResponse(Raw.GetMember()));
 }