pub struct PaymentMethodOptionsMandateOptionsPix {
pub amount: Option<i64>,
pub amount_includes_iof: Option<PaymentMethodOptionsMandateOptionsPixAmountIncludesIof>,
pub amount_type: Option<PaymentMethodOptionsMandateOptionsPixAmountType>,
pub currency: Option<Currency>,
pub end_date: Option<String>,
pub payment_schedule: Option<PaymentMethodOptionsMandateOptionsPixPaymentSchedule>,
pub reference: Option<String>,
pub start_date: Option<String>,
}Fields§
§amount: Option<i64>Amount to be charged for future payments.
amount_includes_iof: Option<PaymentMethodOptionsMandateOptionsPixAmountIncludesIof>Determines if the amount includes the IOF tax.
amount_type: Option<PaymentMethodOptionsMandateOptionsPixAmountType>Type of amount.
currency: Option<Currency>Three-letter ISO currency code, in lowercase.
end_date: Option<String>Date when the mandate expires and no further payments will be charged, in YYYY-MM-DD.
payment_schedule: Option<PaymentMethodOptionsMandateOptionsPixPaymentSchedule>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 PaymentMethodOptionsMandateOptionsPix
impl Clone for PaymentMethodOptionsMandateOptionsPix
Source§fn clone(&self) -> PaymentMethodOptionsMandateOptionsPix
fn clone(&self) -> PaymentMethodOptionsMandateOptionsPix
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 FromValueOpt for PaymentMethodOptionsMandateOptionsPix
impl FromValueOpt for PaymentMethodOptionsMandateOptionsPix
fn from_value(v: Value) -> Option<Self>
Source§impl PartialEq for PaymentMethodOptionsMandateOptionsPix
impl PartialEq for PaymentMethodOptionsMandateOptionsPix
Source§fn eq(&self, other: &PaymentMethodOptionsMandateOptionsPix) -> bool
fn eq(&self, other: &PaymentMethodOptionsMandateOptionsPix) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for PaymentMethodOptionsMandateOptionsPix
impl StructuralPartialEq for PaymentMethodOptionsMandateOptionsPix
Auto Trait Implementations§
impl Freeze for PaymentMethodOptionsMandateOptionsPix
impl RefUnwindSafe for PaymentMethodOptionsMandateOptionsPix
impl Send for PaymentMethodOptionsMandateOptionsPix
impl Sync for PaymentMethodOptionsMandateOptionsPix
impl Unpin for PaymentMethodOptionsMandateOptionsPix
impl UnsafeUnpin for PaymentMethodOptionsMandateOptionsPix
impl UnwindSafe for PaymentMethodOptionsMandateOptionsPix
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