use serde::Deserialize;
#[derive(Deserialize, Debug)]
pub struct ScalewayApplication {
pub id: String,
pub name: String,
pub description: String,
pub organization_id: String,
pub editable: bool,
pub nb_api_keys: u32,
pub tags: Option<Vec<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>,
}