pub struct PaymentIntentProcessingCustomerNotification {
pub approval_requested: Option<bool>,
pub completes_at: Option<i64>,
}
Fields§
§approval_requested: Option<bool>
Whether customer approval has been requested for this payment. For payments greater than INR 15000 or mandate amount, the customer must provide explicit approval of the payment with their bank.
completes_at: Option<i64>
If customer approval is required, they need to provide approval before this time.
Trait Implementations§
Source§impl Clone for PaymentIntentProcessingCustomerNotification
impl Clone for PaymentIntentProcessingCustomerNotification
Source§fn clone(&self) -> PaymentIntentProcessingCustomerNotification
fn clone(&self) -> PaymentIntentProcessingCustomerNotification
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 moreimpl Copy for PaymentIntentProcessingCustomerNotification
Auto Trait Implementations§
impl Freeze for PaymentIntentProcessingCustomerNotification
impl RefUnwindSafe for PaymentIntentProcessingCustomerNotification
impl Send for PaymentIntentProcessingCustomerNotification
impl Sync for PaymentIntentProcessingCustomerNotification
impl Unpin for PaymentIntentProcessingCustomerNotification
impl UnwindSafe for PaymentIntentProcessingCustomerNotification
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