1
2
3
4
5
6
7
8
9
10
11
12
13
14
use serde::{Deserialize, Serialize};

#[derive(Clone, Debug, Default, Deserialize, Serialize)]
#[serde(rename_all = "PascalCase")]
pub struct FieldDiff {
    pub r#type: Option<String>,
    pub name: Option<String>,
    pub old: Option<String>,
    pub new: Option<String>,
    pub annotations: Option<Vec<String>>,
}