feat: enhance payment and topup interfaces with status and expiration details

This commit is contained in:
2025-07-06 22:38:01 +05:00
parent 9e25da717b
commit df2b3da22e
3 changed files with 53 additions and 50 deletions

View File

@ -81,9 +81,12 @@ export interface Payment {
paid: boolean;
paid_at: string | null;
method: string;
expires_at: string | null;
expires_at: string;
is_expired: boolean;
created_at: string;
updated_at: string;
status: "CANCELLED" | "PENDING" | "PAID";
mib_reference: string | null;
user: number;
}