1 2 3 4 5 6 7 8 9 10 11 12 13
//! Model for CustomerCreationSourceRule 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 CustomerCreationSourceRule {
/// Indicates that the values should be included based on the rule.
Include,
/// Indicates that the values should be excluded based on the rule.
Exclude,
}