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 82fb2cb commit 5081efcCopy full SHA for 5081efc
kube-core/src/error.rs
@@ -15,4 +15,7 @@ pub struct ErrorResponse {
15
pub reason: String,
16
/// The error code
17
pub code: u16,
18
+ /// Optional metadata, present on at least some list api errors
19
+ #[serde(skip_serializing_if = "Option::is_none")]
20
+ pub metadata: Option<serde_json::Value>,
21
}
0 commit comments