import { EDocType, IAddress } from '../../general';
export interface IInvoicePayer {
    address: IAddress;
    doc: string;
    docType: EDocType;
    email: string;
    internationalCode: string;
    name: string;
    phoneNumber: string | null;
}
