wallee
Version:
TypeScript/JavaScript client for wallee
36 lines (35 loc) • 610 B
TypeScript
import { TaxLine } from "./TaxLine";
declare class Item {
/**
*
*/
'priceIncludingTax'?: number;
/**
*
*/
'productId'?: number;
/**
*
*/
'quantity'?: number;
/**
*
*/
'recalculatePrice'?: boolean;
/**
*
*/
'taxLines'?: Array<TaxLine>;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export { Item };