Module slack_sdk.webhook.webhook_response
Expand source code
class WebhookResponse:
def __init__(
self,
*,
url: str,
status_code: int,
body: str,
headers: dict,
):
self.api_url = url
self.status_code = status_code
self.body = body
self.headers = headers
Classes
class WebhookResponse (*, url: str, status_code: int, body: str, headers: dict)
-
Expand source code
class WebhookResponse: def __init__( self, *, url: str, status_code: int, body: str, headers: dict, ): self.api_url = url self.status_code = status_code self.body = body self.headers = headers