@@ -39,15 +39,28 @@ class AsyncWebClient(AsyncBaseClient):
3939 as well as parsing any responses received into a `SlackResponse`.
4040
4141 Attributes:
42- token (str): A string specifying an xoxp or xoxb token.
42+ token (str): A string specifying an ` xoxp-*` or ` xoxb-*` token.
4343 base_url (str): A string representing the Slack API base URL.
44- Default is 'https://www.slack.com/api/'
44+ Default is ` 'https://www.slack.com/api/'`
4545 timeout (int): The maximum number of seconds the client will wait
4646 to connect and receive a response from Slack.
4747 Default is 30 seconds.
48+ ssl (SSLContext): An [`ssl.SSLContext`][1] instance, helpful for specifying
49+ your own custom certificate chain.
50+ proxy (str): String representing a fully-qualified URL to a proxy through
51+ which to route all requests to the Slack API. Even if this parameter
52+ is not specified, if any of the following environment variables are
53+ present, they will be loaded into this parameter: `HTTPS_PROXY`,
54+ `https_proxy`, `HTTP_PROXY` or `http_proxy`.
55+ session (ClientSession): [`aiohttp.ClientSession`][2] to attach to all outgoing requests.
56+ trust_env_in_session (bool): Boolean setting whether aiohttp outgoing requests
57+ are allowed to read environment variables. Commonly used in conjunction
58+ with proxy support via the `HTTPS_PROXY`, `https_proxy`, `HTTP_PROXY` and
59+ `http_proxy` environment variables.
60+ headers (dict): Additional request headers to attach to all requests.
4861
4962 Methods:
50- api_call: Constructs a request and executes the API call to Slack.
63+ ` api_call` : Constructs a request and executes the API call to Slack.
5164
5265 Example of recommended usage:
5366 ```python
@@ -80,6 +93,9 @@ class AsyncWebClient(AsyncBaseClient):
8093 Any attributes or methods prefixed with _underscores are
8194 intended to be "private" internal use only. They may be changed or
8295 removed at anytime.
96+
97+ [1]: https://docs.python.org/3/library/ssl.html#ssl.SSLContext
98+ [2]: https://docs.aiohttp.org/en/stable/client_reference.html#client-session
8399 """
84100
85101 async def admin_analytics_getFile (
0 commit comments