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

/// ## Location possible for parameters
#[derive(Debug, Hash, Eq, PartialEq, Serialize, Deserialize, Clone, Sparsable, OApiCheck)]
#[serde(rename_all = "camelCase")]
pub enum OApiParameterLocation {
    Query,
    Header,
    Path,
    Cookie,
}