15 lines
207 B
JavaScript
15 lines
207 B
JavaScript
export const previewSavedPaymentMethods = {
|
|
cc: [
|
|
{
|
|
method: {
|
|
gateway: 'stripe',
|
|
last4: '5678',
|
|
brand: 'Visa',
|
|
},
|
|
expires: '12/20',
|
|
is_default: false,
|
|
tokenId: '1',
|
|
},
|
|
],
|
|
};
|