psychologylib/dto/
student_recommendation_request.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
use serde::{Deserialize, Serialize};
use serde_json;
use uuid::Uuid;

#[derive(Serialize, Deserialize, Debug, Clone)]
#[serde(rename_all = "camelCase")]
pub struct StudentRecommendationRequest {
    pub vark: Option<Vec<serde_json::Value>>,
    pub types_of_intelligence: Option<Vec<serde_json::Value>>,
    pub recommendations: Option<serde_json::Value>,
    pub student: Option<Uuid>,
    pub psychologist: Option<Uuid>,
}