workos 1.0.0

Official Rust SDK for the WorkOS API
Documentation
// 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 FlagUpdatedContextPreviousAttributeData {
    /// The previous name of the flag.
    #[serde(skip_serializing_if = "Option::is_none", default)]
    pub name: Option<String>,
    /// The previous description of the flag.
    #[serde(skip_serializing_if = "Option::is_none", default)]
    pub description: Option<String>,
    /// The previous tags of the flag.
    #[serde(skip_serializing_if = "Option::is_none", default)]
    pub tags: Option<Vec<String>>,
    /// 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>,
}