schul_cloud_api/networking/data/
private_key.rs

1use serde::Deserialize;
2
3#[derive(Deserialize, Clone, Debug)]
4pub struct PrivateKeyInfo {
5    pub user_id: String,
6    pub r#type: String,
7    pub format: String,
8    pub private_key: String,
9    pub public_key: String,
10    pub public_key_signature: String,
11    pub time: String,
12    pub deleted: Option<String>,
13    pub version: u8,
14}