pub struct PaymentMethodDetailsKlarna {
pub payer_details: Option<KlarnaPayerDetails>,
pub payment_method_category: Option<String>,
pub preferred_locale: Option<String>,
}
Fields§
§payer_details: Option<KlarnaPayerDetails>
The payer details for this transaction.
payment_method_category: Option<String>
The Klarna payment method used for this transaction.
Can be one of pay_later
, pay_now
, pay_with_financing
, or pay_in_installments
preferred_locale: Option<String>
Preferred language of the Klarna authorization page that the customer is redirected to.
Can be one of de-AT
, en-AT
, nl-BE
, fr-BE
, en-BE
, de-DE
, en-DE
, da-DK
, en-DK
, es-ES
, en-ES
, fi-FI
, sv-FI
, en-FI
, en-GB
, en-IE
, it-IT
, en-IT
, nl-NL
, en-NL
, nb-NO
, en-NO
, sv-SE
, en-SE
, en-US
, es-US
, fr-FR
, en-FR
, cs-CZ
, en-CZ
, ro-RO
, en-RO
, el-GR
, en-GR
, en-AU
, en-NZ
, en-CA
, fr-CA
, pl-PL
, en-PL
, pt-PT
, en-PT
, de-CH
, fr-CH
, it-CH
, or en-CH
.
Trait Implementations§
Source§impl Clone for PaymentMethodDetailsKlarna
impl Clone for PaymentMethodDetailsKlarna
Source§fn clone(&self) -> PaymentMethodDetailsKlarna
fn clone(&self) -> PaymentMethodDetailsKlarna
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 Debug for PaymentMethodDetailsKlarna
impl Debug for PaymentMethodDetailsKlarna
Source§impl FromValueOpt for PaymentMethodDetailsKlarna
impl FromValueOpt for PaymentMethodDetailsKlarna
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for PaymentMethodDetailsKlarna
impl RefUnwindSafe for PaymentMethodDetailsKlarna
impl Send for PaymentMethodDetailsKlarna
impl Sync for PaymentMethodDetailsKlarna
impl Unpin for PaymentMethodDetailsKlarna
impl UnwindSafe for PaymentMethodDetailsKlarna
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