From 7a591de6f35cbd754317f7b262339cb89d86ce11 Mon Sep 17 00:00:00 2001 From: Thanaphon Frappet Date: Wed, 18 Dec 2024 09:59:41 +0700 Subject: [PATCH] feat add type payment flow account --- src/stores/payment/types.ts | 7 +++++++ 1 file changed, 7 insertions(+) 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;