UNPKG

scheunemann-interfaces

Version:
23 lines (22 loc) 540 B
import { IAddress, IPaymentProvider } from '../../general'; import { EDocType } from '../../general/enums'; export interface IPartner { active: boolean; address: IAddress; doc: string; docType: EDocType; email: string; level: number; fullName: string; id: string; imageUrl?: string; internationalCode: string; logoUrl?: string; name: string; paymentProvider: IPaymentProvider; phoneNumber: string; sandbox: boolean; tags: string[]; updatedAt: Date; version: string; }