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};
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct VaultDekDecrypted {
    /// Unique identifier for the event.
    pub id: String,
    pub event: String,
    /// The event payload.
    pub data: VaultDekDecryptedData,
    /// An ISO 8601 timestamp.
    pub created_at: String,
    #[serde(skip_serializing_if = "Option::is_none", default)]
    pub context: Option<EventContext>,
    /// Distinguishes the Event object.
    pub object: String,
}