pub struct PaymentIntentNextActionBoleto {
pub expires_at: Option<Timestamp>,
pub hosted_voucher_url: Option<String>,
pub number: Option<String>,
pub pdf: Option<String>,
}
Fields§
§expires_at: Option<Timestamp>
The timestamp after which the boleto expires.
hosted_voucher_url: Option<String>
The URL to the hosted boleto voucher page, which allows customers to view the boleto voucher.
number: Option<String>
The boleto number.
pdf: Option<String>
The URL to the downloadable boleto voucher PDF.
Trait Implementations§
Source§impl Clone for PaymentIntentNextActionBoleto
impl Clone for PaymentIntentNextActionBoleto
Source§fn clone(&self) -> PaymentIntentNextActionBoleto
fn clone(&self) -> PaymentIntentNextActionBoleto
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 FromValueOpt for PaymentIntentNextActionBoleto
impl FromValueOpt for PaymentIntentNextActionBoleto
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for PaymentIntentNextActionBoleto
impl RefUnwindSafe for PaymentIntentNextActionBoleto
impl Send for PaymentIntentNextActionBoleto
impl Sync for PaymentIntentNextActionBoleto
impl Unpin for PaymentIntentNextActionBoleto
impl UnwindSafe for PaymentIntentNextActionBoleto
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