pub struct CreatePaymentIntentMandateData {
pub customer_acceptance: CreatePaymentIntentMandateDataCustomerAcceptance,
}
Expand description
This hash contains details about the Mandate to create.
This parameter can only be used with confirm=true
.
Fields§
§customer_acceptance: CreatePaymentIntentMandateDataCustomerAcceptance
This hash contains details about the customer acceptance of the Mandate.
Implementations§
Source§impl CreatePaymentIntentMandateData
impl CreatePaymentIntentMandateData
pub fn new( customer_acceptance: impl Into<CreatePaymentIntentMandateDataCustomerAcceptance>, ) -> Self
Trait Implementations§
Source§impl Clone for CreatePaymentIntentMandateData
impl Clone for CreatePaymentIntentMandateData
Source§fn clone(&self) -> CreatePaymentIntentMandateData
fn clone(&self) -> CreatePaymentIntentMandateData
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 moreAuto Trait Implementations§
impl Freeze for CreatePaymentIntentMandateData
impl RefUnwindSafe for CreatePaymentIntentMandateData
impl Send for CreatePaymentIntentMandateData
impl Sync for CreatePaymentIntentMandateData
impl Unpin for CreatePaymentIntentMandateData
impl UnwindSafe for CreatePaymentIntentMandateData
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