atomic_lti/
platform_storage.rs

1use serde::{Deserialize, Serialize};
2
3#[derive(Debug, Deserialize, Serialize)]
4pub struct LTIStorageParams {
5  pub target: String,
6  #[serde(rename = "platformOIDCUrl")]
7  pub platform_oidc_url: String,
8}
9
10impl Default for LTIStorageParams {
11  fn default() -> Self {
12    Self {
13      target: "".to_string(),
14      platform_oidc_url: "".to_string(),
15    }
16  }
17}