Make LicensedArticle's license fieald optional

This commit is contained in:
Kitaiti Makoto
2022-05-01 18:53:51 +09:00
parent de6e9c0e2e
commit 41bc2d6949
3 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -558,7 +558,7 @@ impl Object for Licensed {}
#[derive(Clone, Debug, Deserialize, Serialize, PartialEq, Eq)]
#[serde(rename_all = "camelCase")]
pub struct Licensed07 {
pub license: String,
pub license: Option<String>,
}
impl<U> UnparsedExtension<U> for Licensed07