/// <summary> /// Gets information about a user. /// </summary> public Task <UserResponse> InfoAsync(UserToGetInfo userToGetInfo) => SendGetAsync <UserToGetInfo, UserResponse>("info", userToGetInfo);
/// <inheritdoc cref="UsersClient.InfoAsync(UserToGetInfo)"/> public Task <UserResponse> UserInfoAsync(UserToGetInfo userToGetInfo) => Users.InfoAsync(userToGetInfo);