Name | Type | Description | Notes |
---|---|---|---|
id | str | [readonly] | |
created_at | datetime | [readonly] | |
updated_at | datetime | [optional] [readonly] | |
kind | OrganizationWebhookKindEnum | [optional] | |
target_url | str | Set the public HTTP or HTTPS endpoint that will receive the specified events. The target URL must starts with `http://` or `https://` | [optional] |
target_secret_set | bool | [optional] | |
description | str | [optional] | |
enabled | bool | Turn on or off your endpoint. | [optional] |
events | List[OrganizationWebhookEventEnum] | [optional] | |
project_names_filter | List[str] | Specify the project names you want to filter to. This webhook will be triggered only if the event is coming from the specified Project IDs. Notes: 1. Wildcard is accepted E.g. `product*`. 2. Name is case insensitive. | [optional] |
environment_types_filter | List[EnvironmentModeEnum] | Specify the environment modes you want to filter to. This webhook will be triggered only if the event is coming from an environment with the specified mode. | [optional] |
from qovery.models.organization_webhook_response import OrganizationWebhookResponse
# TODO update the JSON string below
json = "{}"
# create an instance of OrganizationWebhookResponse from a JSON string
organization_webhook_response_instance = OrganizationWebhookResponse.from_json(json)
# print the JSON string representation of the object
print OrganizationWebhookResponse.to_json()
# convert the object into a dict
organization_webhook_response_dict = organization_webhook_response_instance.to_dict()
# create an instance of OrganizationWebhookResponse from a dict
organization_webhook_response_form_dict = organization_webhook_response.from_dict(organization_webhook_response_dict)