UNPKG

data-and-reporting-sdk

Version:

Data And Reporting product consists of API's which provides details of transaction and invoice informations about shell cards. The Shell Card Transaction and Invoice API is REST-based and employs Basic authentication in Version 1 and Oauth authentication

50 lines 1.68 kB
/** * Shell Data & Reporting APIsLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema.js'; export interface FuelConsumptionData { /** Account Name */ accountName?: string | null; /** Account Number */ accountNumber?: string | null; /** Payment customer Name */ payerName?: string | null; /** Payment customer number */ payerNumber?: string | null; /** Card PAN */ cardNumber?: string | null; /** Card group ID */ cardGroupId?: number | null; /** Card group name */ cardGroupName?: string | null; /** Driver name */ driverName?: string | null; /** Vehicle registration number */ licenseNumber?: string | null; /** First transaction odometer reading */ initialOdometer?: number | null; /** Last transaction odometer reading */ lastOdometer?: number | null; /** Distance in KM or Miles based on Customer and Colco Settings */ distance?: number | null; /** Total Fuel Consumption. */ fuelConsumption?: number | null; /** Net Fuel Amount */ fuelNetAmount?: number | null; /** Total Discount */ discount?: number | null; /** Fuel Tax Amount */ fuelTax?: number | null; /** Total Fuel Volume in Litres */ fuelVolume?: number | null; /** Gross Nonfuel Amount */ grossNonFuelExpenses?: number | null; /** Total Co2 produced */ cO2Produced?: number | null; /** Total Transaction Count */ transactionCount?: number | null; } export declare const fuelConsumptionDataSchema: Schema<FuelConsumptionData>; //# sourceMappingURL=fuelConsumptionData.d.ts.map