# CommitStatus ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **context** | **String** | Context is the unique context identifier for the status | [optional] **createdAt** | [**Date**](Date.md) | | [optional] **creator** | [**User**](User.md) | | [optional] **description** | **String** | Description provides a brief description of the status | [optional] **id** | **Long** | ID is the unique identifier for the commit status | [optional] **status** | [**StatusEnum**](#StatusEnum) | State represents the status state (pending, success, error, failure) | [optional] **targetUrl** | **String** | TargetURL is the URL to link to for more details | [optional] **updatedAt** | [**Date**](Date.md) | | [optional] **url** | **String** | URL is the API URL for this status | [optional] ## Enum: StatusEnum Name | Value ---- | ----- PENDING | "pending" SUCCESS | "success" ERROR | "error" FAILURE | "failure" WARNING | "warning" SKIPPED | "skipped"