pub struct PaymentIntentNextActionPixDisplayQrCode {
pub data: Option<String>,
pub expires_at: Option<i64>,
pub hosted_instructions_url: Option<String>,
pub image_url_png: Option<String>,
pub image_url_svg: Option<String>,
}
Fields§
§data: Option<String>
The raw data string used to generate QR code, it should be used together with QR code library.
expires_at: Option<i64>
The date (unix timestamp) when the PIX expires.
hosted_instructions_url: Option<String>
The URL to the hosted pix instructions page, which allows customers to view the pix QR code.
image_url_png: Option<String>
The image_url_png string used to render png QR code
image_url_svg: Option<String>
The image_url_svg string used to render svg QR code
Trait Implementations§
Source§impl Clone for PaymentIntentNextActionPixDisplayQrCode
impl Clone for PaymentIntentNextActionPixDisplayQrCode
Source§fn clone(&self) -> PaymentIntentNextActionPixDisplayQrCode
fn clone(&self) -> PaymentIntentNextActionPixDisplayQrCode
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 PaymentIntentNextActionPixDisplayQrCode
impl FromValueOpt for PaymentIntentNextActionPixDisplayQrCode
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for PaymentIntentNextActionPixDisplayQrCode
impl RefUnwindSafe for PaymentIntentNextActionPixDisplayQrCode
impl Send for PaymentIntentNextActionPixDisplayQrCode
impl Sync for PaymentIntentNextActionPixDisplayQrCode
impl Unpin for PaymentIntentNextActionPixDisplayQrCode
impl UnwindSafe for PaymentIntentNextActionPixDisplayQrCode
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