lbx-invoice
Version:
Provides functionality around generating invoices.
17 lines (16 loc) • 414 B
TypeScript
/**
* Information about the unit of the amount value.
* Consists of a display name like "Hours" and a code like "HUR".
*/
export declare class AmountUnit {
/**
* The display name for invoices.
*/
displayName: string;
/**
* The common code for the unit, based on rec20
* https://unece.org/trade/uncefact/cl-recommendations.
* Used for x-rechnung.
*/
code: string;
}