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