# The GenieEvalRunResponse object

## Attributes

- `eval_run_id` (string, Beta)
  The unique identifier for the evaluation run.
  Example: `e1ef34712a29169db030324fd0e1df5f`
- `eval_run_status` (string, Beta)
  Current status of the evaluation run.
  Possible values: `EVALUATION_STATUS_TYPE_UNSPECIFIED`, `RUNNING`, `DONE`, `NOT_STARTED`, `EVALUATION_FAILED`, `EVALUATION_CANCELLED`, `EVALUATION_TIMEOUT`
- `run_by_user` (int64, Beta)
  User ID who initiated the evaluation run.
- `created_timestamp` (int64, Beta)
  Timestamp when the evaluation run was created (milliseconds since epoch).
- `num_questions` (int64, Beta)
  Total number of questions in the evaluation run.
- `num_correct` (int64, Beta)
  Number of questions answered correctly.
- `num_needs_review` (int64, Beta)
  Number of questions that need manual review.
- `num_done` (int64, Beta)
  Number of questions that have been completed.
- `last_updated_timestamp` (int64, Beta)
  Timestamp when the evaluation run was last updated (milliseconds since epoch).

## Example

```json
{
  "eval_run_id": "e1ef34712a29169db030324fd0e1df5f",
  "eval_run_status": "string",
  "run_by_user": 0,
  "created_timestamp": 0,
  "num_questions": 0,
  "num_correct": 0,
  "num_needs_review": 0,
  "num_done": 0,
  "last_updated_timestamp": 0
}
```


