HoneyHive TypeScript API SDK
    Preparing search index...

    Type Alias GetDatapointResponse

    type GetDatapointResponse = {
        datapoint: {
            created_at: string;
            ground_truth: { [key: string]: unknown } | null;
            history: { [key: string]: unknown }[];
            id: string;
            inputs: { [key: string]: unknown };
            linked_datasets?: string[];
            linked_event: string | null;
            metadata: { [key: string]: unknown } | null;
            updated_at?: string;
        }[];
    }
    Index

    Properties

    Properties

    datapoint: {
        created_at: string;
        ground_truth: { [key: string]: unknown } | null;
        history: { [key: string]: unknown }[];
        id: string;
        inputs: { [key: string]: unknown };
        linked_datasets?: string[];
        linked_event: string | null;
        metadata: { [key: string]: unknown } | null;
        updated_at?: string;
    }[]