pub struct PaymentIntentNextActionVerifyWithMicrodeposits {
pub arrival_date: Timestamp,
pub hosted_verification_url: String,
pub microdeposit_type: Option<PaymentIntentNextActionVerifyWithMicrodepositsMicrodepositType>,
}
Fields§
§arrival_date: Timestamp
The timestamp when the microdeposits are expected to land.
hosted_verification_url: String
The URL for the hosted verification page, which allows customers to verify their bank account.
microdeposit_type: Option<PaymentIntentNextActionVerifyWithMicrodepositsMicrodepositType>
The type of the microdeposit sent to the customer. Used to distinguish between different verification methods.
Trait Implementations§
Source§impl Clone for PaymentIntentNextActionVerifyWithMicrodeposits
impl Clone for PaymentIntentNextActionVerifyWithMicrodeposits
Source§fn clone(&self) -> PaymentIntentNextActionVerifyWithMicrodeposits
fn clone(&self) -> PaymentIntentNextActionVerifyWithMicrodeposits
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 PaymentIntentNextActionVerifyWithMicrodeposits
impl FromValueOpt for PaymentIntentNextActionVerifyWithMicrodeposits
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for PaymentIntentNextActionVerifyWithMicrodeposits
impl RefUnwindSafe for PaymentIntentNextActionVerifyWithMicrodeposits
impl Send for PaymentIntentNextActionVerifyWithMicrodeposits
impl Sync for PaymentIntentNextActionVerifyWithMicrodeposits
impl Unpin for PaymentIntentNextActionVerifyWithMicrodeposits
impl UnwindSafe for PaymentIntentNextActionVerifyWithMicrodeposits
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