// Code generated by oagen. DO NOT EDIT.
#[allow(unused_imports)]
use super::*;
#[allow(unused_imports)]
use crate::enums::*;
use serde::{Deserialize, Serialize};
/// The previous data attributes of the flag.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct FlagRuleUpdatedContextPreviousAttributeData {
/// Whether the flag was previously enabled.
#[serde(skip_serializing_if = "Option::is_none", default)]
pub enabled: Option<bool>,
/// The previous default value of the flag.
#[serde(skip_serializing_if = "Option::is_none", default)]
pub default_value: Option<bool>,
}