diff options
Diffstat (limited to 'rust/src/push/mod.rs')
-rw-r--r-- | rust/src/push/mod.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/rust/src/push/mod.rs b/rust/src/push/mod.rs index 33b2bc5d47..99e9fc3943 100644 --- a/rust/src/push/mod.rs +++ b/rust/src/push/mod.rs @@ -123,6 +123,8 @@ impl IntoPy<PyObject> for Action { #[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq)] pub struct SetTweak { set_tweak: Cow<'static, str>, + + #[serde(skip_serializing_if = "Option::is_none")] value: Option<TweakValue>, // This picks saves any other fields that may have been added as clients. |