Enum plaid::api::mfa::Response [] [src]

pub enum Response {
    Code(String),
    Questions(Vec<String>),
    Selections(Vec<String>),
}

Represents a response to a previously given MFA challenge.

Variants

Code

A response to a code challenge, providing the code that was sent to the user's device.

Questions

Responses to a previously given list of questions.

Selections

Responses to a previously given list of selections.

Trait Implementations

impl Encodable for Response

fn encode<E: Encoder>(&self, e: &mut E) -> Result<(), E::Error>

Derived Implementations

impl PartialEq for Response

fn eq(&self, __arg_0: &Response) -> bool

fn ne(&self, __arg_0: &Response) -> bool

impl Eq for Response

impl Debug for Response

fn fmt(&self, __arg_0: &mut Formatter) -> Result