use super::DateTime;
use serde::Deserialize;
#[derive(Deserialize)]
pub struct TimeChange {
pub newdst: Option<i32>,
pub newzone: Option<i32>,
pub newoffset: i32,
pub utctime: String,
pub oldlocaltime: String,
pub newlocaltime: String,
pub verbose: Option<VerboseTimeChange>,
}
#[derive(Deserialize)]
pub struct VerboseTimeChange {
pub utctime: DateTime,
pub oldlocaltime: DateTime,
pub newlocaltime: DateTime,
}