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

42 lines (41 loc) 1.29 kB
/** * Shell Data & Reporting APIsLib * * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ). */ import { Schema } from '../schema'; 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<UsageSummary>;