pub struct ResendRequest {
pub user_id: String,
pub verified_event: Option<VerifiedEvent>,
pub verified_entity_id: Option<String>,
}Expand description
Resend verification request data
Fields§
§user_id: StringUser ID of user being verified.
e.g. johndoe123
verified_event: Option<VerifiedEvent>This will be the event type that triggered the verification
verified_entity_id: Option<String>The ID of the entity impacted by the event being verified.
Trait Implementations§
Source§impl Debug for ResendRequest
impl Debug for ResendRequest
Source§impl<'de> Deserialize<'de> for ResendRequest
impl<'de> Deserialize<'de> for ResendRequest
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 ResendRequest
impl RefUnwindSafe for ResendRequest
impl Send for ResendRequest
impl Sync for ResendRequest
impl Unpin for ResendRequest
impl UnwindSafe for ResendRequest
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