use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct CodespaceRuntimeConstraints {
#[serde(rename = "allowed_port_privacy_settings", default, with = "::serde_with::rust::double_option", skip_serializing_if = "Option::is_none")]
pub allowed_port_privacy_settings: Option<Option<Vec<String>>>,
}
impl CodespaceRuntimeConstraints {
pub fn new() -> CodespaceRuntimeConstraints {
CodespaceRuntimeConstraints {
allowed_port_privacy_settings: None,
}
}
}