UNPKG

@gentrace/core

Version:
52 lines (50 loc) 1.1 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 FeedbackV2 */ export interface FeedbackV2 { /** * The unique identifier for the feedback * @type {string} * @memberof FeedbackV2 */ id: string; /** * The unique identifier for the pipeline run * @type {string} * @memberof FeedbackV2 */ pipelineRunId: string; /** * The score of the feedback, ranging from 0 to 1 * @type {number} * @memberof FeedbackV2 */ score: number; /** * Optional details about the feedback * @type {string} * @memberof FeedbackV2 */ details?: string | null; /** * Timestamp in seconds since the UNIX epoch. Can be transformed into a Date object. * @type {number} * @memberof FeedbackV2 */ recordedTime: number; }