workos/models/agent_registration_claim_attempt_created_data.rs
1// This file is auto-generated by oagen. Do not edit.
2
3#[allow(unused_imports)]
4use super::*;
5#[allow(unused_imports)]
6use crate::enums::*;
7use serde::{Deserialize, Serialize};
8/// The event payload.
9#[derive(Debug, Clone, Serialize, Deserialize)]
10pub struct AgentRegistrationClaimAttemptCreatedData {
11 /// Distinguishes the agent registration claim attempt object.
12 pub object: String,
13 /// Unique identifier of the agent registration claim attempt.
14 pub id: String,
15 /// The ID of the agent registration.
16 pub agent_registration_id: String,
17 /// The ID of the agent registration claim.
18 pub agent_registration_claim_id: String,
19 /// The login hint for the claim attempt.
20 pub login_hint: String,
21 /// The timestamp when the claim attempt expires.
22 pub expires_at: String,
23 /// The timestamp when the claim attempt was created.
24 pub created_at: String,
25 /// The timestamp when the claim attempt was last updated.
26 pub updated_at: String,
27}