use schemars::JsonSchema;
use serde::{Deserialize, Serialize};
#[derive(Serialize, Deserialize, Debug, Clone, JsonSchema)]
#[schemars(rename = "cli.output.notification.functions.profiles.Pair")]
pub struct Pair {
pub pair: FunctionProfilePair,
}
#[derive(Serialize, Deserialize, Debug, Clone, JsonSchema)]
#[schemars(rename = "cli.output.notification.functions.profiles.FunctionProfilePair")]
pub struct FunctionProfilePair {
pub function: crate::functions::response::GetFunctionResponse,
pub profile: crate::functions::profiles::response::GetProfileResponse,
}