diff --git a/src/stores/payment/types.ts b/src/stores/payment/types.ts index 77c29faf..745f7083 100644 --- a/src/stores/payment/types.ts +++ b/src/stores/payment/types.ts @@ -26,6 +26,13 @@ export type InvoicePayload = { installmentNo?: number[]; }; +export type PaymentFlowAccount = { + status: boolean; + message: string; + code: number; + data: { link: string }; +}; + export type Payment = { code?: string; paymentStatus: string;