From f4293ca104c950faf84c4b9740e34d937ed900e2 Mon Sep 17 00:00:00 2001 From: Dominic Charley-Roy Date: Wed, 25 May 2022 09:44:39 -0400 Subject: [PATCH] docs: Update HttpClient documentation to remove experimental status. --- lib/net/HttpClient.js | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/lib/net/HttpClient.js b/lib/net/HttpClient.js index 053ab0d8e7..b309ce7d9d 100644 --- a/lib/net/HttpClient.js +++ b/lib/net/HttpClient.js @@ -1,8 +1,13 @@ 'use strict'; /** - * Encapsulates the logic for issuing a request to the Stripe API. This is an - * experimental interface and is not yet stable. + * Encapsulates the logic for issuing a request to the Stripe API. + * + * A custom HTTP client should should implement: + * 1. A response class which extends HttpClientResponse and wraps around their + * own internal representation of a response. + * 2. A client class which extends HttpClient and implements all methods, + * returning their own response class when making requests. */ class HttpClient { /** The client name used for diagnostics. */