diff --git a/api/rust/src/tag.rs b/api/rust/src/tag.rs index 1aa1546..45714d9 100644 --- a/api/rust/src/tag.rs +++ b/api/rust/src/tag.rs @@ -139,11 +139,11 @@ pub struct TagHandle(pub(crate) TagId); #[derive(Debug)] pub struct TagProperties { /// Whether or not the tag is active. - active: Option, + pub active: Option, /// The tag's name. - name: Option, + pub name: Option, /// The output the tag is on. - output: Option, + pub output: Option, } impl TagHandle {