use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum FunctionShellCallOutputOutcomeParam {
FunctionShellCallOutputTimeoutOutcomeParam(
Box<models::FunctionShellCallOutputTimeoutOutcomeParam>,
),
FunctionShellCallOutputExitOutcomeParam(Box<models::FunctionShellCallOutputExitOutcomeParam>),
}
impl Default for FunctionShellCallOutputOutcomeParam {
fn default() -> Self {
Self::FunctionShellCallOutputTimeoutOutcomeParam(Default::default())
}
}