import { Price } from '../../order/Price';
import { InvoiceLineTypeEnum } from './InvoiceLineTypeEnum';
/** Description of an invoice line */
export interface InvoiceLine {
    /** Description of item */
    description: string;
    /** End period */
    periodEnd?: string;
    /** Start period */
    periodStart?: string;
    /** Price without tax */
    price: Price;
    /** Quantity of item */
    quantity: number;
    /** Associated service name */
    serviceName: string;
    /** Price with tax */
    totalPrice: Price;
    /** Type of item */
    type?: InvoiceLineTypeEnum;
}
//# sourceMappingURL=InvoiceLine.d.ts.map