UNPKG

einvoicing

Version:

A JavaScript library for creating and parsing electronic invoices compliant with the eInvoicing Directive, EN 16931, and popular extensions

18 lines (17 loc) 441 B
/** * Payee.ts * * @copyright Vitalii Savchuk <esvit666@gmail.com> * @package esvit/einvoicing * @licence MIT https://opensource.org/licenses/MIT */ import { ValueObject } from "../base/ValueObject"; export interface IPayee { name?: string; companyId?: string; additionalIdentifiers: string[]; } export default class Payee extends ValueObject<IPayee> { static create(props: IPayee): Payee; toPrimitive(): IPayee; }