/** * Shell Data & Reporting APIsLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema.js'; export interface UsageSummary { /** * Transaction date. * The records will be sorted by this field in ascending order. * Format: yyyyMMdd */ date?: string | null; /** Product Id */ productId?: number | null; /** Client Product code */ productCode?: string | null; /** Product name in English */ productName?: string | null; /** Whether the product is fuel or non-fuel */ isFuelProduct?: boolean | null; /** Site Group Id */ siteGroupId?: number | null; /** Site Group Name */ siteGroupName?: string | null; /** Total Volume */ totalVolume?: number | null; /** Total Gross in Customer Currency */ totalGross?: number | null; /** Total Net in Customer Currency */ totalNet?: number | null; /** Customer Currency Code */ currencyCode?: string | null; /** Customer Currency Symbol */ currencySymbol?: string | null; /** Product group ID */ productGroupID?: number | null; /** Product group Name */ productGroupName?: string | null; } export declare const usageSummarySchema: Schema; //# sourceMappingURL=usageSummary.d.ts.map