use serde::Deserialize;
#[derive(Deserialize, Debug)]
pub struct ScalewayProjectsRoot {
pub projects: Vec<ScalewayProject>,
}
#[derive(Deserialize, Debug)]
pub struct ScalewayProject {
pub id: String,
pub name: String,
pub organization_id: String,
#[serde(with = "time::serde::rfc3339::option")]
pub created_at: Option<time::OffsetDateTime>,
#[serde(with = "time::serde::rfc3339::option")]
pub updated_at: Option<time::OffsetDateTime>,
pub description: Option<String>,
}