UNPKG

scheunemann-interfaces

Version:
13 lines (12 loc) 410 B
import { AddressEntity, EDocType } from '../../general'; import { IInvoicePayer } from '../interfaces/i-invoice-payer'; export declare class InvoicePayerEntity implements IInvoicePayer { address: AddressEntity; doc: string; docType: EDocType; email: string; internationalCode: string; name: string; phoneNumber: string | null; constructor(data?: Partial<InvoicePayerEntity>); }