knot0_types/
infrastructure.rs

1//! Auto-generated from JSON Schema
2
3use serde::{Deserialize, Serialize};
4
5#[derive(Debug, Clone, Serialize, Deserialize)]
6#[serde(rename_all = "camelCase")]
7pub struct Infrastructure {
8    pub kind: serde_json::Value,
9    pub schema_version: String,
10    pub metadata: serde_json::Value,
11    pub engine: serde_json::Value,
12    pub source: serde_json::Value,
13    pub contract: serde_json::Value,
14    pub state: serde_json::Value,
15    pub environments: Option<serde_json::Value>,
16}
17
18#[derive(Debug, Clone, Serialize, Deserialize)]
19pub struct Todo {
20}