pub struct IssuingAuthorizationVerificationData {
pub address_line1_check: IssuingAuthorizationCheck,
pub address_postal_code_check: IssuingAuthorizationCheck,
pub cvc_check: IssuingAuthorizationCheck,
pub expiry_check: IssuingAuthorizationCheck,
}
Fields§
§address_line1_check: IssuingAuthorizationCheck
Whether the cardholder provided an address first line and if it matched the cardholder’s billing.address.line1
.
address_postal_code_check: IssuingAuthorizationCheck
Whether the cardholder provided a postal code and if it matched the cardholder’s billing.address.postal_code
.
cvc_check: IssuingAuthorizationCheck
Whether the cardholder provided a CVC and if it matched Stripe’s record.
expiry_check: IssuingAuthorizationCheck
Whether the cardholder provided an expiry date and if it matched Stripe’s record.
Trait Implementations§
source§impl Clone for IssuingAuthorizationVerificationData
impl Clone for IssuingAuthorizationVerificationData
source§fn clone(&self) -> IssuingAuthorizationVerificationData
fn clone(&self) -> IssuingAuthorizationVerificationData
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 Default for IssuingAuthorizationVerificationData
impl Default for IssuingAuthorizationVerificationData
source§fn default() -> IssuingAuthorizationVerificationData
fn default() -> IssuingAuthorizationVerificationData
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for IssuingAuthorizationVerificationData
impl<'de> Deserialize<'de> for IssuingAuthorizationVerificationData
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 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