# TheJiraCloudPlatformRestApi.Webhook

## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**events** | **[String]** | The Jira events that trigger the webhook. | 
**expirationDate** | **Number** | The date after which the webhook is no longer sent. Use [Extend webhook life](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-webhooks/#api-rest-api-3-webhook-refresh-put) to extend the date. | [optional] 
**fieldIdsFilter** | **[String]** | A list of field IDs. When the issue changelog contains any of the fields, the webhook &#x60;jira:issue_updated&#x60; is sent. If this parameter is not present, the app is notified about all field updates. | [optional] 
**id** | **Number** | The ID of the webhook. | 
**issuePropertyKeysFilter** | **[String]** | A list of issue property keys. A change of those issue properties triggers the &#x60;issue_property_set&#x60; or &#x60;issue_property_deleted&#x60; webhooks. If this parameter is not present, the app is notified about all issue property updates. | [optional] 
**jqlFilter** | **String** | The JQL filter that specifies which issues the webhook is sent for. | 

<a name="[EventsEnum]"></a>
## Enum: [EventsEnum]

* `jiraissueCreated` (value: `"jira:issue_created"`)
* `jiraissueUpdated` (value: `"jira:issue_updated"`)
* `jiraissueDeleted` (value: `"jira:issue_deleted"`)
* `commentCreated` (value: `"comment_created"`)
* `commentUpdated` (value: `"comment_updated"`)
* `commentDeleted` (value: `"comment_deleted"`)
* `issuePropertySet` (value: `"issue_property_set"`)
* `issuePropertyDeleted` (value: `"issue_property_deleted"`)

