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 VaultKekCreatedData {
    /// The unique identifier of the actor.
    pub actor_id: String,
    pub actor_source: VaultKekCreatedDataActorSource,
    /// The name of the actor.
    pub actor_name: String,
    /// The name of the key encryption key.
    pub key_name: String,
    /// The unique identifier of the key encryption key.
    pub key_id: String,
}