pub struct AgentRegistrationClaimAttemptCreatedData {
pub object: String,
pub id: String,
pub agent_registration_id: String,
pub agent_registration_claim_id: String,
pub login_hint: String,
pub expires_at: String,
pub created_at: String,
pub updated_at: String,
}Expand description
The event payload.
Fields§
§object: StringDistinguishes the agent registration claim attempt object.
id: StringUnique identifier of the agent registration claim attempt.
agent_registration_id: StringThe ID of the agent registration.
agent_registration_claim_id: StringThe ID of the agent registration claim.
login_hint: StringThe login hint for the claim attempt.
expires_at: StringThe timestamp when the claim attempt expires.
created_at: StringThe timestamp when the claim attempt was created.
updated_at: StringThe timestamp when the claim attempt was last updated.
Trait Implementations§
Source§impl Clone for AgentRegistrationClaimAttemptCreatedData
impl Clone for AgentRegistrationClaimAttemptCreatedData
Source§fn clone(&self) -> AgentRegistrationClaimAttemptCreatedData
fn clone(&self) -> AgentRegistrationClaimAttemptCreatedData
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for AgentRegistrationClaimAttemptCreatedData
impl<'de> Deserialize<'de> for AgentRegistrationClaimAttemptCreatedData
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for AgentRegistrationClaimAttemptCreatedData
impl RefUnwindSafe for AgentRegistrationClaimAttemptCreatedData
impl Send for AgentRegistrationClaimAttemptCreatedData
impl Sync for AgentRegistrationClaimAttemptCreatedData
impl Unpin for AgentRegistrationClaimAttemptCreatedData
impl UnsafeUnpin for AgentRegistrationClaimAttemptCreatedData
impl UnwindSafe for AgentRegistrationClaimAttemptCreatedData
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more