pub struct CustomerAcceptance {
pub accepted_at: Option<Timestamp>,
pub offline: Option<OfflineAcceptance>,
pub online: Option<OnlineAcceptance>,
pub type_: CustomerAcceptanceType,
}
Fields§
§accepted_at: Option<Timestamp>
The time that the customer accepts the mandate.
offline: Option<OfflineAcceptance>
§online: Option<OnlineAcceptance>
§type_: CustomerAcceptanceType
The mandate includes the type of customer acceptance information, such as: online
or offline
.
Trait Implementations§
Source§impl Clone for CustomerAcceptance
impl Clone for CustomerAcceptance
Source§fn clone(&self) -> CustomerAcceptance
fn clone(&self) -> CustomerAcceptance
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 moreSource§impl Debug for CustomerAcceptance
impl Debug for CustomerAcceptance
Source§impl Deserialize for CustomerAcceptance
impl Deserialize for CustomerAcceptance
Source§impl FromValueOpt for CustomerAcceptance
impl FromValueOpt for CustomerAcceptance
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for CustomerAcceptance
impl RefUnwindSafe for CustomerAcceptance
impl Send for CustomerAcceptance
impl Sync for CustomerAcceptance
impl Unpin for CustomerAcceptance
impl UnwindSafe for CustomerAcceptance
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