pub struct IssuingAuthorizationVerificationData {
pub address_line1_check: IssuingAuthorizationVerificationDataAddressLine1Check,
pub address_postal_code_check: IssuingAuthorizationVerificationDataAddressPostalCodeCheck,
pub authentication_exemption: Option<IssuingAuthorizationAuthenticationExemption>,
pub cvc_check: IssuingAuthorizationVerificationDataCvcCheck,
pub expiry_check: IssuingAuthorizationVerificationDataExpiryCheck,
pub postal_code: Option<String>,
pub three_d_secure: Option<IssuingAuthorizationThreeDSecure>,
}
Fields§
§address_line1_check: IssuingAuthorizationVerificationDataAddressLine1Check
Whether the cardholder provided an address first line and if it matched the cardholder’s billing.address.line1
.
address_postal_code_check: IssuingAuthorizationVerificationDataAddressPostalCodeCheck
Whether the cardholder provided a postal code and if it matched the cardholder’s billing.address.postal_code
.
authentication_exemption: Option<IssuingAuthorizationAuthenticationExemption>
The exemption applied to this authorization.
cvc_check: IssuingAuthorizationVerificationDataCvcCheck
Whether the cardholder provided a CVC and if it matched Stripe’s record.
expiry_check: IssuingAuthorizationVerificationDataExpiryCheck
Whether the cardholder provided an expiry date and if it matched Stripe’s record.
postal_code: Option<String>
The postal code submitted as part of the authorization used for postal code verification.
three_d_secure: Option<IssuingAuthorizationThreeDSecure>
3D Secure details.
Trait Implementations§
Source§impl Clone for IssuingAuthorizationVerificationData
impl Clone for IssuingAuthorizationVerificationData
Source§fn clone(&self) -> IssuingAuthorizationVerificationData
fn clone(&self) -> IssuingAuthorizationVerificationData
Returns a duplicate 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 FromValueOpt for IssuingAuthorizationVerificationData
impl FromValueOpt for IssuingAuthorizationVerificationData
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for IssuingAuthorizationVerificationData
impl RefUnwindSafe for IssuingAuthorizationVerificationData
impl Send for IssuingAuthorizationVerificationData
impl Sync for IssuingAuthorizationVerificationData
impl Unpin for IssuingAuthorizationVerificationData
impl UnwindSafe for IssuingAuthorizationVerificationData
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