Type Alias ExperimentModelRecommendationPostResponse

type ExperimentModelRecommendationPostResponse = {
    data: {
        attributes: {
            bestModel?: ModelForRecommendations;
            fastestModel?: ModelForRecommendations;
            mostAccurateModel?: ModelForRecommendations;
        };
        type: "model-recommendation";
    };
}
Index

Properties

Properties

data: {
    attributes: {
        bestModel?: ModelForRecommendations;
        fastestModel?: ModelForRecommendations;
        mostAccurateModel?: ModelForRecommendations;
    };
    type: "model-recommendation";
}

Type declaration