scheunemann-interfaces
Version:
Interfaces de Projetos Scheunemann
13 lines (12 loc) • 410 B
TypeScript
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>);
}