Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 944 Bytes

SlackWebhook.md

File metadata and controls

32 lines (23 loc) · 944 Bytes

SlackWebhook

Properties

Name Type Description Notes
type str
event Dict[str, object]
command str
response_url str

Example

from iblai.models.slack_webhook import SlackWebhook

# TODO update the JSON string below
json = "{}"
# create an instance of SlackWebhook from a JSON string
slack_webhook_instance = SlackWebhook.from_json(json)
# print the JSON string representation of the object
print(SlackWebhook.to_json())

# convert the object into a dict
slack_webhook_dict = slack_webhook_instance.to_dict()
# create an instance of SlackWebhook from a dict
slack_webhook_from_dict = SlackWebhook.from_dict(slack_webhook_dict)

[Back to Model list] [Back to API list] [Back to README]