Interface Data_FuelCall

interface Data_FuelCall {
    timestamp: undefined | Date;
    transaction: undefined | {
        [key: string]: any;
    };
}

Properties

timestamp: undefined | Date
transaction: undefined | {
    [key: string]: any;
}