intramurallib/dto/
briefing_attempt_request.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use common::enums::attempt_status::AttemptStatus;
use serde::{Deserialize, Serialize};
use serde_json;
use uuid::Uuid;

#[derive(Serialize, Deserialize, Debug, Clone)]
#[serde(rename_all = "camelCase")]
pub struct BriefingAttemptRequest {
    pub id: Option<Uuid>,
    pub ver: Option<i32>,
    pub briefing: Uuid,
    pub organization: Uuid,
    pub status: Option<AttemptStatus>,
    pub briefing_person_id: Uuid,
    pub attendee: Uuid,
    pub details: Option<serde_json::Value>,
    pub attempts: Option<i32>,
}