| Name |
Type |
Description |
Notes |
| id |
int |
|
[optional] |
| project_id |
int |
|
[optional] |
| event_type |
str |
|
[optional] |
| target_url |
str |
|
[optional] |
| disabled |
bool |
|
[optional] |
| failure_count |
int |
|
[optional] |
| last_delivered_at |
datetime |
|
[optional] |
| created_at |
datetime |
|
[optional] |
| secret |
str |
HMAC signing secret (whsec_...). Only returned on create. |
[optional] |
from llmpulse.models.create_webhook201_response import CreateWebhook201Response
# TODO update the JSON string below
json = "{}"
# create an instance of CreateWebhook201Response from a JSON string
create_webhook201_response_instance = CreateWebhook201Response.from_json(json)
# print the JSON string representation of the object
print(CreateWebhook201Response.to_json())
# convert the object into a dict
create_webhook201_response_dict = create_webhook201_response_instance.to_dict()
# create an instance of CreateWebhook201Response from a dict
create_webhook201_response_from_dict = CreateWebhook201Response.from_dict(create_webhook201_response_dict)
[Back to Model list] [Back to API list] [Back to README]