Represents who the customer is according to the merchant. These data points may be used by Klarna to simplify sign-up and during fraud assessment. They will not be used for underwriting and will not be persisted on authorized payments.

interface Customer {
    address?: Address;
    email?: string;
    familyName?: string;
    givenName?: string;
    phone?: string;
}

Properties

address?: Address
email?: string
familyName?: string
givenName?: string
phone?: string