Skip to content

Commit

Permalink
docs: Update HttpClient documentation to remove experimental status. (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
dcr-stripe authored May 25, 2022
1 parent 798f44b commit ff15721
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions lib/net/HttpClient.js
Original file line number Diff line number Diff line change
@@ -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. */
Expand Down

0 comments on commit ff15721

Please sign in to comment.