1#[derive(Default, Debug)] 2pub struct SystemEvents<'a> { 3 /// start streaming events from this time 4 pub since: Option<&'a str>, 5 /// stop streaming events later than this 6 pub until: Option<&'a str>, 7 /// JSON encoded map[string][]string of constraints 8 pub filters: Option<&'a str>, 9}