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 • 2.04 kB
TypeScript
/**
* Shell Data & Reporting APIsLib
*
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { Schema } from '../schema.js';
export interface CardExceptions {
/** Account Id */
accountId?: number | null;
/** Account Number */
accountNumber?: string | null;
/** Account Short Name */
accountShortName?: string | null;
/** Unique Card Id */
cardId?: number | null;
/** ISO currency code */
currencyCode?: string | null;
/** Currency symbol of the Invoice Currency Code */
currencySymbol?: string | null;
/** Summary Day: Populated when the Period is passed as ‘Day’. */
day?: number | null;
/** Driver name */
driverName?: string | null;
/** Summary Month: Populated when the Value of Period is Passed as ‘Month’. */
month?: number | null;
/** Card PAN */
pAN?: string | null;
/** Payment customer id of the customer */
payerId?: number | null;
/** Payment customer number */
payerNumber?: string | null;
/** Payer Short Name */
payerShortName?: string | null;
/** Total Amount (In Customer Currency) of Transactions met with the given exceptions criteria. */
totalAmount?: number | null;
/** Total Quantity of Transactions met with the given exceptions criteria. */
totalQuantity?: number | null;
/** Total number of Sales Items met with the given exception criteria. */
totalSalesItems?: number | null;
/** Total number of Transactions met with the given exception criteria. */
totalTransactions?: number | null;
/** Vehicle Registration Number */
vRN?: string | null;
/** Summary Week Number with in the given date range. Populated when the Value of Period is Passed as ‘Week’. */
week?: number | null;
/** Summary Year: Populated when the Value of Period is Passed as ‘Month’. */
year?: number | null;
}
export declare const cardExceptionsSchema: Schema<CardExceptions>;
//# sourceMappingURL=cardExceptions.d.ts.map