# DatadogAPIClient::V2::IncidentsResponse ## Properties | Name | Type | Description | Notes | | ------------ | -------------------------------------------------------------------------------- | --------------------------------------------------- | -------------------- | | **data** | [**Array<IncidentResponseData>**](IncidentResponseData.md) | An array of incidents. | | | **included** | [**Array<IncidentResponseIncludedItem>**](IncidentResponseIncludedItem.md) | Included related resources that the user requested. | [optional][readonly] | | **meta** | [**IncidentServicesResponseMeta**](IncidentServicesResponseMeta.md) | | [optional] | ## Example ```ruby require 'datadog_api_client/v2' instance = DatadogAPIClient::V2::IncidentsResponse.new( data: [{"attributes":{"created":"2020-04-21T15:34:08.627205+00:00","creation_idempotency_key":null,"customer_impact_duration":0,"customer_impact_end":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impacted":false,"detected":"2020-04-14T00:00:00+00:00","modified":"2020-09-17T14:16:58.696424+00:00","postmortem_id":"00000000-0000-0000-0000-000000000000","public_id":1,"resolved":null,"severity":"SEV-1","time_to_detect":0,"time_to_internal_response":0,"time_to_repair":0,"time_to_resolve":0,"title":"Example Incident"},"id":"00000000-0000-0000-0000-000000000000","relationships":{"commander_user":{"data":{"id":"00000000-0000-0000-0000-000000000000","type":"users"}},"created_by_user":{"data":{"id":"00000000-0000-0000-0000-000000000000","type":"users"}},"integrations":{"data":[{"id":"00000000-0000-0000-0000-000000000000","type":"incident_integrations"},{"id":"00000000-0000-0000-0000-000000000000","type":"incident_integrations"}]},"last_modified_by_user":{"data":{"id":"00000000-0000-0000-0000-000000000000","type":"users"}},"postmortem":{"data":{"id":"00000000-0000-0000-0000-000000000000","type":"incident_postmortems"}}},"type":"incidents"},{"attributes":{"created":"2020-04-21T15:34:08.627205+00:00","creation_idempotency_key":null,"customer_impact_duration":0,"customer_impact_end":null,"customer_impact_scope":null,"customer_impact_start":null,"customer_impacted":false,"detected":"2020-04-14T00:00:00+00:00","modified":"2020-09-17T14:16:58.696424+00:00","postmortem_id":"00000000-0000-0000-0000-000000000000","public_id":2,"resolved":null,"severity":"SEV-5","time_to_detect":0,"time_to_internal_response":0,"time_to_repair":0,"time_to_resolve":0,"title":"Example Incident 2"},"id":"00000000-0000-0000-0000-000000000000","relationships":{"commander_user":{"data":{"id":"00000000-0000-0000-0000-000000000000","type":"users"}},"created_by_user":{"data":{"id":"00000000-0000-0000-0000-000000000000","type":"users"}},"integrations":{"data":[{"id":"00000000-0000-0000-0000-000000000000","type":"incident_integrations"},{"id":"00000000-0000-0000-0000-000000000000","type":"incident_integrations"}]},"last_modified_by_user":{"data":{"id":"00000000-0000-0000-0000-000000000000","type":"users"}},"postmortem":{"data":{"id":"00000000-0000-0000-0000-000000000000","type":"incident_postmortems"}}},"type":"incidents"}], included: null, meta: null ) ```