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