workos 3.1.0

Official Rust SDK for the WorkOS API
Documentation
// This file is auto-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 AgentRegistrationCredentialIssuedData {
    /// Distinguishes the agent registration credential object.
    pub object: String,
    /// Unique identifier of the agent registration credential.
    pub id: String,
    /// The ID of the agent registration.
    pub agent_registration_id: String,
    /// Details of the issued credential.
    pub detail: AgentRegistrationCredentialIssuedDataDetailOneOf,
    /// The timestamp when the credential was issued.
    pub created_at: String,
    /// The timestamp when the credential was last updated.
    pub updated_at: String,
}