pub struct PaymentIntentNextActionPaynowDisplayQrCode {
pub data: String,
pub hosted_instructions_url: Option<String>,
pub image_url_png: String,
pub image_url_svg: String,
}
Fields§
§data: String
The raw data string used to generate QR code, it should be used together with QR code library.
hosted_instructions_url: Option<String>
The URL to the hosted PayNow instructions page, which allows customers to view the PayNow QR code.
image_url_png: String
The image_url_png string used to render QR code
image_url_svg: String
The image_url_svg string used to render QR code
Trait Implementations§
Source§impl Clone for PaymentIntentNextActionPaynowDisplayQrCode
impl Clone for PaymentIntentNextActionPaynowDisplayQrCode
Source§fn clone(&self) -> PaymentIntentNextActionPaynowDisplayQrCode
fn clone(&self) -> PaymentIntentNextActionPaynowDisplayQrCode
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 PaymentIntentNextActionPaynowDisplayQrCode
impl RefUnwindSafe for PaymentIntentNextActionPaynowDisplayQrCode
impl Send for PaymentIntentNextActionPaynowDisplayQrCode
impl Sync for PaymentIntentNextActionPaynowDisplayQrCode
impl Unpin for PaymentIntentNextActionPaynowDisplayQrCode
impl UnwindSafe for PaymentIntentNextActionPaynowDisplayQrCode
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