1
2
3
4
5
6
7
8
9
use super::*;

/// ## A selector between a single example or multiple examples
#[derive(Debug, PartialEq, Serialize, Deserialize, Clone, Sparsable, OApiCheck)]
#[serde(rename_all = "camelCase")]
pub enum OApiExampleSelector {
    Single(OApiExample),
    Multiple(Vec<OApiExample>),
}