termreportlib/dto/
report_request.rsuse serde::{Deserialize, Serialize};
use uuid::Uuid;
use crate::enums::report_status::ReportStatus;
use crate::enums::term_type::TermType;
use crate::jsonb::rubric_response::RubricResponse;
#[derive(Serialize, Deserialize, Debug, Clone)]
#[serde(rename_all = "camelCase")]
pub struct ReportRequest {
pub id: Option<Uuid>,
pub org_id: Uuid,
pub template_id: Uuid,
pub student_id: Uuid,
pub reporter: Uuid,
pub rubrics: Vec<RubricResponse>,
pub status: ReportStatus,
pub term_id: Uuid,
pub term_type: TermType,
pub path: Option<String>,
}