pub struct MandatePix {
pub amount_includes_iof: Option<MandatePixAmountIncludesIof>,
pub amount_type: Option<MandatePixAmountType>,
pub end_date: Option<String>,
pub payment_schedule: Option<MandatePixPaymentSchedule>,
pub reference: Option<String>,
pub start_date: Option<String>,
}Fields§
§amount_includes_iof: Option<MandatePixAmountIncludesIof>Determines if the amount includes the IOF tax.
amount_type: Option<MandatePixAmountType>Type of amount.
end_date: Option<String>Date when the mandate expires and no further payments will be charged, in YYYY-MM-DD.
payment_schedule: Option<MandatePixPaymentSchedule>Schedule at which the future payments will be charged.
reference: Option<String>Subscription name displayed to buyers in their bank app.
start_date: Option<String>Start date of the mandate, in YYYY-MM-DD.
Trait Implementations§
Source§impl Clone for MandatePix
impl Clone for MandatePix
Source§fn clone(&self) -> MandatePix
fn clone(&self) -> MandatePix
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 MandatePix
impl Debug for MandatePix
Source§impl Deserialize for MandatePix
impl Deserialize for MandatePix
Source§impl FromValueOpt for MandatePix
impl FromValueOpt for MandatePix
fn from_value(v: Value) -> Option<Self>
Source§impl ObjectDeser for MandatePix
impl ObjectDeser for MandatePix
type Builder = MandatePixBuilder
Source§impl PartialEq for MandatePix
impl PartialEq for MandatePix
Source§fn eq(&self, other: &MandatePix) -> bool
fn eq(&self, other: &MandatePix) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for MandatePix
impl StructuralPartialEq for MandatePix
Auto Trait Implementations§
impl Freeze for MandatePix
impl RefUnwindSafe for MandatePix
impl Send for MandatePix
impl Sync for MandatePix
impl Unpin for MandatePix
impl UnsafeUnpin for MandatePix
impl UnwindSafe for MandatePix
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