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 AgentRegistrationCreatedData {
    /// Distinguishes the agent registration object.
    pub object: String,
    /// Unique identifier of the agent registration.
    pub id: String,
    /// The agent identity for this registration.
    pub agent_identity: AgentRegistrationCreatedDataAgentIdentity,
    /// The ID of the organization the registration belongs to.
    pub organization_id: String,
    /// The current status of the registration.
    pub status: AgentRegistrationCreatedDataStatus,
    /// The kind of the registration.
    pub kind: AgentRegistrationCreatedDataKind,
    /// The authentication method of the registration.
    pub method: AgentRegistrationCreatedDataMethod,
    /// The timestamp when the registration was created.
    pub created_at: String,
    /// The timestamp when the registration was last updated.
    pub updated_at: String,
}