export type TransactionResponse = {
    status: boolean;
    message: string;
    data: {
        access_code: string;
        amount: string;
        checkout_url: string;
        created_datetime: string;
        currency: string;
        id: string;
        reference: string;
        status: string;
    };
};
