dev_scope/models/v1alpha/
mod.rs

1use schemars::JsonSchema;
2use serde::{Deserialize, Serialize};
3use strum::EnumString;
4
5mod doctor_group;
6mod known_error;
7mod report_definition;
8mod report_location;
9
10#[derive(
11    Serialize, Deserialize, Debug, strum::Display, Clone, PartialEq, EnumString, JsonSchema,
12)]
13/// Version of the Scope API
14pub enum V1AlphaApiVersion {
15    #[serde(rename = "scope.github.com/v1alpha")]
16    #[strum(serialize = "scope.github.com/v1alpha")]
17    /// Current latest version of the resources.
18    ScopeV1Alpha,
19}
20
21pub mod prelude {
22    pub use super::doctor_group::*;
23    pub use super::known_error::*;
24    pub use super::report_definition::*;
25    pub use super::report_location::*;
26}