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 event payload.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct VaultDekReadData {
    /// The unique identifier of the actor.
    pub actor_id: String,
    pub actor_source: VaultDekReadDataActorSource,
    /// The name of the actor.
    pub actor_name: String,
    /// The unique identifiers of the data encryption keys.
    pub key_ids: Vec<String>,
    pub key_context: std::collections::HashMap<String, String>,
}