import { IAddress, IPaymentProvider } from '../../general';
import { EDocType } from '../../general/enums';
export interface IPartner {
    active: boolean;
    address: IAddress;
    doc: string;
    docType: EDocType;
    email: string;
    fullName: string;
    id: string;
    imageUrl: string | null;
    internationalCode: string;
    level: number;
    logoUrl?: string;
    name: string;
    paymentProvider: IPaymentProvider;
    phoneNumber: string;
    sandbox: boolean;
    tags: string[];
    updatedAt: Date;
    version: string;
}
