From 10e9686d8b8f8657bce4af0ba9c0afcc384558a0 Mon Sep 17 00:00:00 2001 From: Lakshya Singh Date: Sun, 29 Oct 2023 23:47:32 +0530 Subject: [PATCH] fix: integration step filter type field name (#40) --- src/integrations.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/integrations.rs b/src/integrations.rs index 65a45e8..ccb87e2 100644 --- a/src/integrations.rs +++ b/src/integrations.rs @@ -57,9 +57,10 @@ pub struct Credentials { } #[derive(PartialEq, Eq, Debug, Serialize, Deserialize)] -#[serde(rename_all = "camelCase")] pub struct StepFilter { + #[serde(rename = "isNegated")] is_negated: bool, + #[serde(rename = "type")] step_filter_type: StepFilterType, value: StepFilterValue, children: Vec,