workos 3.0.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 AgentRegistrationClaimCompletedData {
    /// Distinguishes the agent registration claim object.
    pub object: String,
    /// Unique identifier of the agent registration claim.
    pub id: String,
    /// The ID of the agent registration.
    pub agent_registration_id: String,
    /// The ID of the claim attempt that completed the claim.
    pub completed_by_attempt_id: String,
    /// The user who completed the claim.
    pub claimed_by: AgentRegistrationClaimCompletedDataClaimedBy,
    /// The timestamp when the claim was completed.
    pub completed_at: String,
    /// The timestamp when the claim was created.
    pub created_at: String,
    /// The timestamp when the claim was last updated.
    pub updated_at: String,
}