mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-05 08:59:14 +08:00
32 lines
709 B
JavaScript
32 lines
709 B
JavaScript
|
|
class MockData {
|
|
|
|
static cardComponent() {
|
|
return {
|
|
fields: {
|
|
phoneNumber: {
|
|
prefill: "1234567890"
|
|
},
|
|
cardholderName: {} // optionally pass this to show the card holder name
|
|
}
|
|
}
|
|
}
|
|
|
|
static cardComponentTokenize() {
|
|
return {
|
|
name: {
|
|
fullName: "John Doe"
|
|
},
|
|
billingAddress: {
|
|
addressLine1: "2211 North 1st St",
|
|
adminArea1: "San Jose",
|
|
adminArea2: "CA",
|
|
postalCode: "95131",
|
|
countryCode: "US"
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
export default MockData;
|