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};
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct AgentRegistrationClaimClaimCompletion {
    /// Unique identifier of the claim completion.
    pub id: String,
    /// The timestamp when the claim completion was created.
    pub created_at: String,
    /// The timestamp when the claim completion was last updated.
    pub updated_at: String,
    /// The timestamp when the claim completion expires.
    pub expires_at: String,
    /// The timestamp when the claim was completed.
    pub claimed_at: String,
}