Closed jamols09 closed 3 years ago
you can pass like this
createPaymentMethod('card', {billing_details: { name: "User Name" }})
.then(data => {
console.log(data);
})
.catch(error => {
console.log(error);
});
createToken({billing_details: { name: "User Name"}})
.then(data => {
console.log(data);
})
.catch(error => {
console.log(error);
})
I've noticed that there are multiple components that I can call but I was wondering if card holder name can also be included ? How do I implement it?