pub struct SourceCodeVerificationFlow {
pub attempts_remaining: i64,
pub status: String,
}Fields§
§attempts_remaining: i64The number of attempts remaining to authenticate the source object with a verification code.
status: StringThe status of the code verification, either pending (awaiting verification, attempts_remaining should be greater than 0), succeeded (successful verification) or failed (failed verification, cannot be verified anymore as attempts_remaining should be 0).
Trait Implementations§
source§impl Clone for SourceCodeVerificationFlow
impl Clone for SourceCodeVerificationFlow
source§fn clone(&self) -> SourceCodeVerificationFlow
fn clone(&self) -> SourceCodeVerificationFlow
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for SourceCodeVerificationFlow
impl Debug for SourceCodeVerificationFlow
source§impl Default for SourceCodeVerificationFlow
impl Default for SourceCodeVerificationFlow
source§fn default() -> SourceCodeVerificationFlow
fn default() -> SourceCodeVerificationFlow
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for SourceCodeVerificationFlow
impl<'de> Deserialize<'de> for SourceCodeVerificationFlow
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