pub struct ConfirmSetupIntentSecretKeyParamCustomerAcceptance {
pub accepted_at: Option<Timestamp>,
pub offline: Option<Value>,
pub online: Option<OnlineParam>,
pub type_: ConfirmSetupIntentSecretKeyParamCustomerAcceptanceType,
}
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_: ConfirmSetupIntentSecretKeyParamCustomerAcceptanceType
The type of customer acceptance information included with the Mandate.
One of online
or offline
.
Implementations§
Source§impl ConfirmSetupIntentSecretKeyParamCustomerAcceptance
impl ConfirmSetupIntentSecretKeyParamCustomerAcceptance
pub fn new( type_: impl Into<ConfirmSetupIntentSecretKeyParamCustomerAcceptanceType>, ) -> Self
Trait Implementations§
Source§impl Clone for ConfirmSetupIntentSecretKeyParamCustomerAcceptance
impl Clone for ConfirmSetupIntentSecretKeyParamCustomerAcceptance
Source§fn clone(&self) -> ConfirmSetupIntentSecretKeyParamCustomerAcceptance
fn clone(&self) -> ConfirmSetupIntentSecretKeyParamCustomerAcceptance
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 ConfirmSetupIntentSecretKeyParamCustomerAcceptance
impl RefUnwindSafe for ConfirmSetupIntentSecretKeyParamCustomerAcceptance
impl Send for ConfirmSetupIntentSecretKeyParamCustomerAcceptance
impl Sync for ConfirmSetupIntentSecretKeyParamCustomerAcceptance
impl Unpin for ConfirmSetupIntentSecretKeyParamCustomerAcceptance
impl UnwindSafe for ConfirmSetupIntentSecretKeyParamCustomerAcceptance
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