bluesnap
Version:
Node SDK for the BlueSnap Payment Gateway
19 lines (18 loc) • 455 B
TypeScript
/**
* Contains Level 2/3 data properties for each item purchased
*/
export interface Level3DataItemsResponse {
lineItemTotal: number;
commodityCode: string;
description: string;
dicsountAmount: number;
discountIndicator: 'Y' | 'N';
grossNetIndicator: 'Y' | 'N';
productCode: string;
itemQuantity: number;
taxAmount: number;
taxRate: number;
taxType: string;
unitCost: number;
unitOfMeasure: string;
}