pub struct ConfirmPaymentIntentClientKeyParamCustomerAcceptance {
pub online: ConfirmPaymentIntentClientKeyParamCustomerAcceptanceOnline,
pub type_: ConfirmPaymentIntentClientKeyParamCustomerAcceptanceType,
}
Expand description
This hash contains details about the customer acceptance of the Mandate.
Fields§
§online: ConfirmPaymentIntentClientKeyParamCustomerAcceptanceOnline
If this is a Mandate accepted online, this hash contains details about the online acceptance.
type_: ConfirmPaymentIntentClientKeyParamCustomerAcceptanceType
The type of customer acceptance information included with the Mandate.
Implementations§
Source§impl ConfirmPaymentIntentClientKeyParamCustomerAcceptance
impl ConfirmPaymentIntentClientKeyParamCustomerAcceptance
pub fn new( online: impl Into<ConfirmPaymentIntentClientKeyParamCustomerAcceptanceOnline>, type_: impl Into<ConfirmPaymentIntentClientKeyParamCustomerAcceptanceType>, ) -> Self
Trait Implementations§
Source§impl Clone for ConfirmPaymentIntentClientKeyParamCustomerAcceptance
impl Clone for ConfirmPaymentIntentClientKeyParamCustomerAcceptance
Source§fn clone(&self) -> ConfirmPaymentIntentClientKeyParamCustomerAcceptance
fn clone(&self) -> ConfirmPaymentIntentClientKeyParamCustomerAcceptance
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 ConfirmPaymentIntentClientKeyParamCustomerAcceptance
impl RefUnwindSafe for ConfirmPaymentIntentClientKeyParamCustomerAcceptance
impl Send for ConfirmPaymentIntentClientKeyParamCustomerAcceptance
impl Sync for ConfirmPaymentIntentClientKeyParamCustomerAcceptance
impl Unpin for ConfirmPaymentIntentClientKeyParamCustomerAcceptance
impl UnwindSafe for ConfirmPaymentIntentClientKeyParamCustomerAcceptance
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