pub struct SourceRedirectFlow {
pub failure_reason: Option<SourceRedirectFlowFailureReason>,
pub return_url: String,
pub status: SourceRedirectFlowStatus,
pub url: String,
}Fields§
§failure_reason: Option<SourceRedirectFlowFailureReason>The failure reason for the redirect, either user_abort (the customer aborted or dropped out of the redirect flow), declined (the authentication failed or the transaction was declined), or processing_error (the redirect failed due to a technical error).
Present only if the redirect status is failed.
return_url: StringThe URL you provide to redirect the customer to after they authenticated their payment.
status: SourceRedirectFlowStatusThe status of the redirect, either pending (ready to be used by your customer to authenticate the transaction), succeeded (succesful authentication, cannot be reused) or not_required (redirect should not be used) or failed (failed authentication, cannot be reused).
url: StringThe URL provided to you to redirect a customer to as part of a redirect authentication flow.
Trait Implementations§
source§impl Clone for SourceRedirectFlow
impl Clone for SourceRedirectFlow
source§fn clone(&self) -> SourceRedirectFlow
fn clone(&self) -> SourceRedirectFlow
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 SourceRedirectFlow
impl Debug for SourceRedirectFlow
source§impl Default for SourceRedirectFlow
impl Default for SourceRedirectFlow
source§fn default() -> SourceRedirectFlow
fn default() -> SourceRedirectFlow
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for SourceRedirectFlow
impl<'de> Deserialize<'de> for SourceRedirectFlow
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