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 VaultDataCreatedData {
    /// The unique identifier of the actor.
    pub actor_id: String,
    pub actor_source: VaultDataCreatedDataActorSource,
    /// The name of the actor.
    pub actor_name: String,
    /// The name of the key-value store.
    pub kv_name: String,
    /// The unique identifier of the encryption key.
    pub key_id: String,
    pub key_context: std::collections::HashMap<String, String>,
}