export interface TransactionItem {
    id: number;
    order_id: number;
    transaction_type: string;
    action_type: string;
    type: string;
    title: string;
    description: string;
    amount: number;
    created_at: number;
    expired_at: number;
}
