//! Model for CustomerInclusionExclusion enum
use serde::{Deserialize, Serialize};
/// The rule to include or exclude a certain set of values.
#[derive(Clone, Debug, Deserialize, Eq, PartialEq, Serialize)]
#[serde(rename_all = "SCREAMING_SNAKE_CASE")]
pub enum CustomerInclusionExclusion {
/// Indicates that the values should be included based on the rule.
Include,
/// Indicates that the values should be excluded based on the rule.
Exclude,
}