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
28 lines • 1.21 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 InvoiceSummaryDetails {
/** Total number of invoices matching with the given search criteria. */
totalInvoices?: number | null;
/** Total gross amount in customer currency combined from all the invoices matching with the given search criteria. */
totalGrossAmountCustomerCurrency?: number | null;
/** Total net amount in customer currency combined from all the invoices matching with the given search criteria. */
totalNetAmountCustomerCurrency?: number | null;
/** Total VAT amount in customer currency combined from all the invoices matching with the given search criteria. */
totalVATAmountCustomerCurrency?: number | null;
/**
* Customer currency ISO code.
* Example: EUR
*/
customerCurrencyCode?: string | null;
/**
* Customer currency code.
* Example: €
*/
customerCurrencySymbol?: string | null;
}
export declare const invoiceSummaryDetailsSchema: Schema<InvoiceSummaryDetails>;
//# sourceMappingURL=invoiceSummaryDetails.d.ts.map