pub struct PaymentIntentNextActionBoleto {
pub expires_at: Option<i64>,
pub hosted_voucher_url: Option<String>,
pub number: Option<String>,
pub pdf: Option<String>,
}
Fields§
§expires_at: Option<i64>
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 moreAuto 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