| /* | |
| * codex-backend | |
| * | |
| * codex-backend | |
| * | |
| * The version of the OpenAPI document: 0.0.1 | |
| * | |
| * Generated by: https://openapi-generator.tech | |
| */ | |
| use crate::models; | |
| use serde::Deserialize; | |
| use serde::Serialize; | |
| pub struct ConfigBundleResponse { | |
| pub config_toml: Option<Option<Box<models::DeliveredConfigToml>>>, | |
| pub requirements_toml: Option<Option<Box<models::DeliveredRequirementsToml>>>, | |
| } | |
| impl ConfigBundleResponse { | |
| pub fn new() -> ConfigBundleResponse { | |
| ConfigBundleResponse { | |
| config_toml: None, | |
| requirements_toml: None, | |
| } | |
| } | |
| } | |