pub struct ConfirmPaymentIntentSecretKeyParamCustomerAcceptance {
pub accepted_at: Option<Timestamp>,
pub offline: Option<Value>,
pub online: Option<OnlineParam>,
pub type_: ConfirmPaymentIntentSecretKeyParamCustomerAcceptanceType,
}
Expand description
This hash contains details about the customer acceptance of the Mandate.
Fields§
§accepted_at: Option<Timestamp>
The time at which the customer accepted the Mandate.
offline: Option<Value>
If this is a Mandate accepted offline, this hash contains details about the offline acceptance.
online: Option<OnlineParam>
If this is a Mandate accepted online, this hash contains details about the online acceptance.
type_: ConfirmPaymentIntentSecretKeyParamCustomerAcceptanceType
The type of customer acceptance information included with the Mandate.
One of online
or offline
.
Implementations§
Source§impl ConfirmPaymentIntentSecretKeyParamCustomerAcceptance
impl ConfirmPaymentIntentSecretKeyParamCustomerAcceptance
pub fn new( type_: impl Into<ConfirmPaymentIntentSecretKeyParamCustomerAcceptanceType>, ) -> Self
Trait Implementations§
Source§impl Clone for ConfirmPaymentIntentSecretKeyParamCustomerAcceptance
impl Clone for ConfirmPaymentIntentSecretKeyParamCustomerAcceptance
Source§fn clone(&self) -> ConfirmPaymentIntentSecretKeyParamCustomerAcceptance
fn clone(&self) -> ConfirmPaymentIntentSecretKeyParamCustomerAcceptance
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 ConfirmPaymentIntentSecretKeyParamCustomerAcceptance
impl RefUnwindSafe for ConfirmPaymentIntentSecretKeyParamCustomerAcceptance
impl Send for ConfirmPaymentIntentSecretKeyParamCustomerAcceptance
impl Sync for ConfirmPaymentIntentSecretKeyParamCustomerAcceptance
impl Unpin for ConfirmPaymentIntentSecretKeyParamCustomerAcceptance
impl UnwindSafe for ConfirmPaymentIntentSecretKeyParamCustomerAcceptance
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