UNPKG

@gentrace/core

Version:
106 lines (104 loc) 2.3 kB
/* tslint:disable */ /* eslint-disable */ /** * Gentrace API * These API routes are designed to ingest events from clients. * * The version of the OpenAPI document: 0.27.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface EvaluationV2 */ export interface EvaluationV2 { /** * The ID of the evaluation * @type {string} * @memberof EvaluationV2 */ id: string; /** * Timestamp in seconds since the UNIX epoch. Can be transformed into a Date object. * @type {number} * @memberof EvaluationV2 */ createdAt: number; /** * Timestamp in seconds since the UNIX epoch. Can be transformed into a Date object. * @type {number} * @memberof EvaluationV2 */ updatedAt: number; /** * Indicates if the evaluation is pending * @type {boolean} * @memberof EvaluationV2 */ isPending: boolean; /** * Indicates if the evaluation is filtered * @type {boolean} * @memberof EvaluationV2 */ isFiltered: boolean; /** * Debug information for the evaluation * @type {{ [key: string]: any; }} * @memberof EvaluationV2 */ debug?: { [key: string]: any } | null; /** * The ID of the evaluator * @type {string} * @memberof EvaluationV2 */ evaluatorId: string; /** * The ID of the run * @type {string} * @memberof EvaluationV2 */ runId: string; /** * The ID of the comparison run, if applicable * @type {string} * @memberof EvaluationV2 */ comparisonRunId?: string | null; /** * The name of the evaluation * @type {string} * @memberof EvaluationV2 */ name: string | null; /** * The label of the evaluation * @type {string} * @memberof EvaluationV2 */ evalLabel: string | null; /** * The value of the evaluation * @type {number} * @memberof EvaluationV2 */ evalValue: number | null; /** * The email of the user who manually created the evaluation, if applicable * @type {string} * @memberof EvaluationV2 */ manualCreatedByEmail?: string | null; /** * Additional notes for the evaluation * @type {string} * @memberof EvaluationV2 */ note: string; }