feat add type payment flow account

This commit is contained in:
Thanaphon Frappet 2024-12-18 09:59:41 +07:00
parent 75e36663c2
commit 7a591de6f3

View file

@ -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;