/** * Finix API */ export declare class AdditionalPurchaseDataItemDataInner { /** * Total cost in cents of the line item excluding tax. */ 'amountExcludingSalesTax'?: number; /** * Total cost in cents of the line item including tax. */ 'amountIncludingSalesTax'?: number; /** * A commodity code is a numeric code representing a particular product or service as defined by the National Institute of Governmental Purchasing. The code can be 3, 5, 7, or 11 digits in length. The longer the code the more granular the description of the product/service. (max 12 characters). */ 'commodityCode'?: string; /** * The price in cents of one unit of the item purchased */ 'costPerUnit'?: number; /** * Required when `item_data` is supplied (max 25 characters) */ 'itemDescription'?: string; /** * Item discount amount in cents */ 'itemDiscountAmount'?: number; /** * Merchant defined product code (max 12 characters). */ 'merchantProductCode'?: string; /** * The number of items purchased. Must be greater than 0. */ 'quantity'?: number; /** * The unit of measure of the purchased item (max 3 characters). */ 'unitOfMeasure'?: string; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }