Details of the Klarna customer account that approves the payment.

interface KlarnaCustomerProfile {
    address: Address;
    country: string;
    customerId: string;
    email: string;
    emailVerified: boolean;
    familyName: string;
    givenName: string;
    locale: string;
    phone: string;
    phoneVerified: boolean;
}

Properties

address: Address
country: string

Indicates whether the email address has been verified through OTP or not.

customerId: string
email: string
emailVerified: boolean
familyName: string
givenName: string
locale: string
phone: string
phoneVerified: boolean

Indicates whether the phone number has been verified through OTP or not.