konduto/types/analysis_layer/layer.rs
1use crate::Recommendation;
2use crate::risk::RiskScore;
3use crate::types::analysis_layer::AnalysisLayerStatus;
4use serde::{Deserialize, Serialize};
5
6#[derive(Debug, Clone, Serialize, Deserialize, PartialEq)]
7pub struct AnalysisLayer {
8 pub recommendation: Recommendation,
9 pub original_recommendation: Recommendation,
10 pub is_exploring: bool,
11 pub analysis_type: AnalysisLayerStatus,
12 pub score: RiskScore,
13}