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