pub struct MandateBacsDebit {
pub network_status: MandateBacsDebitNetworkStatus,
pub reference: String,
pub revocation_reason: Option<MandateBacsDebitRevocationReason>,
pub url: String,
}
Fields§
§network_status: MandateBacsDebitNetworkStatus
The status of the mandate on the Bacs network.
Can be one of pending
, revoked
, refused
, or accepted
.
reference: String
The unique reference identifying the mandate on the Bacs network.
revocation_reason: Option<MandateBacsDebitRevocationReason>
When the mandate is revoked on the Bacs network this field displays the reason for the revocation.
url: String
The URL that will contain the mandate that the customer has signed.
Trait Implementations§
Source§impl Clone for MandateBacsDebit
impl Clone for MandateBacsDebit
Source§fn clone(&self) -> MandateBacsDebit
fn clone(&self) -> MandateBacsDebit
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 MandateBacsDebit
impl Debug for MandateBacsDebit
Source§impl Deserialize for MandateBacsDebit
impl Deserialize for MandateBacsDebit
Source§impl FromValueOpt for MandateBacsDebit
impl FromValueOpt for MandateBacsDebit
fn from_value(v: Value) -> Option<Self>
Source§impl ObjectDeser for MandateBacsDebit
impl ObjectDeser for MandateBacsDebit
Auto Trait Implementations§
impl Freeze for MandateBacsDebit
impl RefUnwindSafe for MandateBacsDebit
impl Send for MandateBacsDebit
impl Sync for MandateBacsDebit
impl Unpin for MandateBacsDebit
impl UnwindSafe for MandateBacsDebit
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