pub struct ManagerAccountVerifyTimeBasedOneTimePasswordAction {
pub time_based_one_time_password: Option<String>,
}Expand description
This action verifies a user-provided Time-based One-Time Password (TOTP). This is to ensure the client’s copy of the secret key is aligned with the secret key stored by the service.
This action shall verify a user-provided RFC6238-defined Time-based One-Time Password (TOTP).
Fields§
§time_based_one_time_password: Option<String>The Time-based One-Time Password (TOTP) to verify.
This parameter shall contain the Time-based One-Time Password (TOTP) to verify. If the Time-based
One-Time Password (TOTP) is not valid, the service shall return the HTTP 400 Bad Request status
code.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ManagerAccountVerifyTimeBasedOneTimePasswordAction
impl RefUnwindSafe for ManagerAccountVerifyTimeBasedOneTimePasswordAction
impl Send for ManagerAccountVerifyTimeBasedOneTimePasswordAction
impl Sync for ManagerAccountVerifyTimeBasedOneTimePasswordAction
impl Unpin for ManagerAccountVerifyTimeBasedOneTimePasswordAction
impl UnsafeUnpin for ManagerAccountVerifyTimeBasedOneTimePasswordAction
impl UnwindSafe for ManagerAccountVerifyTimeBasedOneTimePasswordAction
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