Skip to content

Commit e580b29

Browse files
committed
adding is_archived to metadata.rs
1 parent c65805f commit e580b29

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

rust/crates/sift_rs/src/wrappers/metadata.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,14 @@ impl<T: Into<MetadataEnumValue>> From<(&str, T)> for MetadataValue {
4646
name: name.to_string(),
4747
r#type: key_type.into(),
4848
archived_date: None,
49+
is_archived: false,
4950
};
5051

5152
MetadataValue {
5253
key: Some(key),
5354
value: Some(enum_value),
5455
archived_date: None,
56+
is_archived: false,
5557
}
5658
}
5759
}

0 commit comments

Comments
 (0)