pub struct SetupIntentNextActionPixDisplayQrCode {
pub data: String,
pub expires_at: i64,
pub hosted_instructions_url: String,
pub image_url_png: String,
pub image_url_svg: String,
}Fields§
§data: StringThe raw data string used to generate QR code, it should be used together with QR code library.
expires_at: i64The date (unix timestamp) when the PIX expires.
hosted_instructions_url: StringThe URL to the hosted pix instructions page, which allows customers to view the pix QR code.
image_url_png: StringThe image_url_png string used to render png QR code
image_url_svg: StringThe image_url_svg string used to render svg QR code
Trait Implementations§
Source§impl Clone for SetupIntentNextActionPixDisplayQrCode
impl Clone for SetupIntentNextActionPixDisplayQrCode
Source§fn clone(&self) -> SetupIntentNextActionPixDisplayQrCode
fn clone(&self) -> SetupIntentNextActionPixDisplayQrCode
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 PartialEq for SetupIntentNextActionPixDisplayQrCode
impl PartialEq for SetupIntentNextActionPixDisplayQrCode
Source§fn eq(&self, other: &SetupIntentNextActionPixDisplayQrCode) -> bool
fn eq(&self, other: &SetupIntentNextActionPixDisplayQrCode) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for SetupIntentNextActionPixDisplayQrCode
impl StructuralPartialEq for SetupIntentNextActionPixDisplayQrCode
Auto Trait Implementations§
impl Freeze for SetupIntentNextActionPixDisplayQrCode
impl RefUnwindSafe for SetupIntentNextActionPixDisplayQrCode
impl Send for SetupIntentNextActionPixDisplayQrCode
impl Sync for SetupIntentNextActionPixDisplayQrCode
impl Unpin for SetupIntentNextActionPixDisplayQrCode
impl UnsafeUnpin for SetupIntentNextActionPixDisplayQrCode
impl UnwindSafe for SetupIntentNextActionPixDisplayQrCode
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