# 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_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<IncidentNotificationHandle>**](IncidentNotificationHandle.md) | 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_cells: null, notification_handles: null, title: A test incident title ) ```