Skip to content

Commit

Permalink
fix: integration step filter type field name (#40)
Browse files Browse the repository at this point in the history
  • Loading branch information
king-11 committed Oct 29, 2023
1 parent ee6aa09 commit 10e9686
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/integrations.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<FieldFilterPart>,
Expand Down

0 comments on commit 10e9686

Please sign in to comment.