| Name | Type | Description | Notes |
|---|---|---|---|
| id | String | Unique identifier of the automation event. | [optional] |
| automationId | String | Identifier of the automation that produced this event. | [optional] |
| state | StateEnum | Outcome of the automation run. | [optional] |
| triggeredBy | TriggeredByEnum | What caused the automation to run. | [optional] |
| createdAt | OffsetDateTime | Timestamp when the event was created. | [optional] |
| jobsCreated | Integer | Number of jobs created during this automation run. | [optional] |
| jobIds | List<String> | Identifiers of the jobs created during this automation run. | [optional] |
| project | AutomationEventProject | [optional] | |
| details | String | Error message describing the failure when state is `failure`; null otherwise. | [optional] |
| Name | Value |
|---|---|
| SUCCESS | "success" |
| FAILURE | "failure" |
| IN_PROGRESS | "in_progress" |
| Name | Value |
|---|---|
| MANUAL | "manual" |
| SCHEDULE | "schedule" |
| UPLOAD | "upload" |
| UPLOAD_BATCH | "upload_batch" |