Sha256: 44d7a36378fa6a8dbdd06ebc2bf453028b5e60384f451179184dfd638637cf11
Contents?: true
Size: 1.24 KB
Versions: 5
Compression:
Stored size: 1.24 KB
Contents
# DatadogAPIClient::V2::IncidentCreateAttributes ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **customer_impacted** | **Boolean** | A flag indicating whether the incident caused customer impact. | | | **fields** | [**Hash<String, IncidentFieldAttributes>**](IncidentFieldAttributes.md) | A condensed view of the user-defined fields for which to create initial selections. | [optional] | | **initial_timeline_cells** | [**Array<IncidentTimelineCellCreateAttributes>**](IncidentTimelineCellCreateAttributes.md) | An array of initial timeline cells to be placed at the beginning of the incident timeline. | [optional] | | **notification_handles** | **Array<String>** | Notification handles that will be notified of the incident at creation. | [optional] | | **title** | **String** | The title of the incident, which summarizes what happened. | | ## Example ```ruby require 'datadog_api_client/v2' instance = DatadogAPIClient::V2::IncidentCreateAttributes.new( customer_impacted: false, fields: {"severity":{"type":"dropdown","value":"SEV-5"}}, initial_timeline_cells: null, notification_handles: null, title: A test incident title ) ```
Version data entries
5 entries across 5 versions & 1 rubygems