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

36 lines 1.34 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 FeeItemSummaryAllOf0 { /** Fee type group in under which the Fee item is generated. */ feeTypeGroup?: string | null; /** Fee Type Id ID Description */ feeTypeId?: string | null; /** Product Id */ productId?: number | null; /** Product Code */ productCode?: string | null; /** Product Name */ productName?: string | null; /** Product Group Id */ productGroupId?: number | null; /** Product Group Name */ productGroupName?: string | null; /** Total Quantity */ totalQuantity?: number | null; /** Total Net amount in invoice currency */ totalInvoiceNetAmount?: number | null; /** Total Gross amount in invoice currency */ totalInvoiceGrossAmount?: number | null; /** Total VAT amount in invoice currency */ totalInvoiceVATAmount?: number | null; /** ISO 4217 currency code of the country */ invoiceCurrencyCode?: string | null; /** Currency symbol of the Invoice Currency Code */ invoiceCurrencySymbol?: string | null; } export declare const feeItemSummaryAllOf0Schema: Schema<FeeItemSummaryAllOf0>; //# sourceMappingURL=feeItemSummaryAllOf0.d.ts.map