Overview
The BuildResult type holds the result of a single project build.
Properties
| Property |
Type |
Description |
| id |
int |
The build identifier or number of the build. |
| completed |
boolean |
True iff the build has completed. |
| endTime |
date/time |
The time that the build completed, not valid if completed is false. |
| errorCount |
int |
The number of error features found in the build. |
| progress |
int |
The estimated percentage complete for the build [0-100]. Set to -1 if no estimate has been made. |
| revision |
string |
The revision for the build, which may be an empty string if the build failed before a revision was determined. |
| specification |
string |
The name of the build specification that was built. |
| stages |
array<RemoteApi.StageResult> |
The build stages executed for this build. |
| startTime |
date/time |
The time that the build commenced, not valid in state pending. |
| status |
string |
The state of the build, one of {pending, in progress, terminating, success, failure, error}. See Build States. |
| succeeded |
boolean |
True iff the build has compeleted and succeeded. |
| warningCount |
int |
The number of warning features found in the build. |