| Name |
Type |
Description |
Notes |
| _links |
{ [key: string]: Link; } |
The location and content type of related resources |
[default to undefined] |
| _id |
string |
The ID of this webhook |
[default to undefined] |
| name |
string |
A human-readable name for this webhook |
[optional] [default to undefined] |
| url |
string |
The URL to which LaunchDarkly sends an HTTP POST payload for this webhook |
[default to undefined] |
| secret |
string |
The secret for this webhook |
[optional] [default to undefined] |
| statements |
Array<Statement> |
Represents a Custom role policy, defining a resource kinds filter the webhook responds to. |
[optional] [default to undefined] |
| on |
boolean |
Whether or not this webhook is enabled |
[default to undefined] |
| tags |
Array<string> |
List of tags for this webhook |
[default to undefined] |
| _access |
Access |
|
[optional] [default to undefined] |
import { Webhook } from 'launchdarkly-api-typescript';
const instance: Webhook = {
_links,
_id,
name,
url,
secret,
statements,
on,
tags,
_access,
};
[Back to Model list] [Back to API list] [Back to README]