We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 766f03d commit cc1a1e6Copy full SHA for cc1a1e6
rust/cubeorchestrator/src/transport.rs
@@ -159,7 +159,8 @@ pub type MembersMap = HashMap<String, String>;
159
pub struct GranularityMeta {
160
pub name: String,
161
pub title: String,
162
- pub interval: String,
+ #[serde(skip_serializing_if = "Option::is_none")]
163
+ pub interval: Option<String>,
164
#[serde(skip_serializing_if = "Option::is_none")]
165
pub offset: Option<String>,
166
0 commit comments