feat: Implement get payment plans API endpoint

This commit is contained in:
Faruk AYDIN
2024-02-21 18:06:56 +01:00
parent 84a0b37fcc
commit d21e1f75b5
5 changed files with 71 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
const getPaymentPlansMock = async () => {
return {
data: [
{
limit: '10,000',
name: '10k - monthly',
price: '€20',
productId: '47384',
quota: 10000,
},
],
meta: {
count: 1,
currentPage: null,
isArray: true,
totalPages: null,
type: 'Object',
},
};
};
export default getPaymentPlansMock;